Posts by Gabriel Rodrigues • 118 points
7 posts
-
0
votes1
answer255
viewsQ: How to use the Urlfetchapp class with Node.js
I’m trying to use a Google Apps Script class, but I’m having trouble finding information on how to use the classes in Apps Scripts and run in Ode. Ex: converter.js if (process.argv.length < 3) {…
-
1
votes2
answers477
viewsA: Failure of matrix segmentation
I was perplexed to run your code and receive the segmentation failure since it seems correct. Well I didn’t find out the cause of the problem, but I did find some clues that the central problem lies…
-
4
votes1
answer1299
viewsQ: How can I compile a simple program in Prolog?
I have SWI-Prolog installed, but I’m using it as a kind of interpreter, Exp: swi-pl?- [load]. True I wonder if there is a simple command that I can use via terminal to compile the source code into a…
prologasked Gabriel Rodrigues 118 -
1
votes1
answer1466
viewsA: Difference between GCC Clang
To answer your question we need to make a brief reflection. -The Clang deals only with the front-end , "let’s say it deals basically with the options and the links paths to the files, "for the…
-
1
votes1
answer91
viewsA: How to declare a global queue?
I think the problem is in the use of exter in file . h, it indicates the way the compiler will store the variable. Your setting variable in the header file should not contain the word extern unless…
c++answered Gabriel Rodrigues 118 -
1
votes1
answer733
viewsA: Lexical Analyzer using LEX
Do you need to write at the end of the file ? or can you overwrite it ? if you are using linux and can overwrite the cpp.cpp file do the following:. int main(int argc, char **argv){…
-
1
votes1
answer125
viewsA: Using C Pointer Pointer
Try to do char word[50]; and in the function call insertTrie(root, word); I think that solves your problem.
canswered Gabriel Rodrigues 118