main is a predefined or user define function
if user defined why?
if predefined whay?
Answer Posted / vilas soni++
main() is predefined function, coz we can't change it's
prototype....
We can only implement it.... And we have to use main() in
our program coz it's "Entry Point" to any C program....
(We can say userdefined, if we can also define it's
prototype and name, and in this case we can't!, we can use
only available types of main()....)
| Is This Answer Correct ? | 10 Yes | 12 No |
Post New Answer View All Answers
Can you please compare array with pointer?
What is a lvalue
Explain low-order bytes.
Are pointers integer?
How can I call fortran?
Do you know the use of fflush() function?
What is wrong with this program statement?
What is the translation phases used in c language?
Explain how can I prevent another program from modifying part of a file that I am modifying?
A character flag or control mechanism that delineates one data item from another a) variable b) constant c) delimiter d) call by reference
write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
code for quick sort?
What is the sizeof () a pointer?
Write a code of a general series where the next element is the sum of last k terms.