What is the difference b/w main() in C language and main()
in C++.
Answer Posted / ayush
there is no difference b/w in c & c++ in main() function.
| Is This Answer Correct ? | 2 Yes | 3 No |
Post New Answer View All Answers
Is there any possibility to create customized header file with c programming language?
What is #define?
How can I recover the file name given an open stream or file descriptor?
What are the advantages and disadvantages of a heap?
How do you generate random numbers in C?
Describe dynamic data structure in c programming language?
Write a program to print fibonacci series using recursion?
What are header files why are they important?
What is the use of #define preprocessor in c?
List a few unconditional control statement in c.
Describe the modifier in c?
Do pointers need to be initialized?
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
Explain two-dimensional array.
What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?