Answer Posted / ektasingh
main is not user defined.(user defined functions can have
any name )
main is not inbuilt.(it has not been defined in any library)
what is main????
| Is This Answer Correct ? | 6 Yes | 3 No |
Post New Answer View All Answers
Find duplicates in a file containing 6 digit number (like uid) in O (n) time.
What is meant by 'bit masking'?
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???
What is strcpy() function?
What is the difference between struct and union in C?
What is the use of getch ()?
process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,
Can you pass an entire structure to functions?
What is line in c preprocessor?
Explain what is the benefit of using #define to declare a constant?
Explain what are run-time errors?
What is the auto keyword good for?
In c language can we compile a program without main() function?
Can an array be an Ivalue?
cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration