[Solved] How to get an integer from user in c++? [closed]
Try with g++ : g++ program.cpp -o a.out Or with gcc (If you add the c++ runtime library) : gcc program.cpp -o a.out -lstdc++ solved How to get an integer from user in c++? [closed]
Try with g++ : g++ program.cpp -o a.out Or with gcc (If you add the c++ runtime library) : gcc program.cpp -o a.out -lstdc++ solved How to get an integer from user in c++? [closed]
ANSI C standard provides little in the way of conventions only rules. Function, type and variable identifiers may use any alphanumeric symbol A-Za-z0-9 and underscore _. Names may not begin with a number. This is not a convention but the definition for what a legal name may be. The only convention I am aware of … Read more