Pradeepto Bhattacharya wrote:
Those doing it for the first time, please note that if you copy/paste the program code from the wiki page directly into the vi editor, it adds extra comment characters '//' on different lines and that gives compiling errors. So simply remove the '//' characters manually. GCC may
That happens because there is a line with comments // in
the code, so when you paste it all the following lines are commented. If you type // in vi and press <enter> key, you will note that the next line has // as well.
Hmm. So it looks at it like a single line wrapped up?