main is a predefined or user define function
if user defined why?
if predefined whay?
Answer Posted / sandeep kumar yadav
the definition of main is given by the user so it is called
user define function..
the prototype is define by the compiler so it is called
predefine...
this function is dependent on both user and compiler for
the execution of the program.so it is not only user define
or predefine..
so we can say it is a special function called by operating
system to execute the program.
| Is This Answer Correct ? | 22 Yes | 3 No |
Post New Answer View All Answers
Do you know pointer in c?
What are the advantages of Macro over function?
Why we use conio h in c?
How can I prevent another program from modifying part of a file that I am modifying?
Explain how can I make sure that my program is the only one accessing a file?
Can a pointer be static?
What is a substring in c?
Does c have an equivalent to pascals with statement?
How would you rename a function in C?
How was c created?
Differentiate between full, complete & perfect binary trees.
Explain bitwise shift operators?
Write a progarm to find the length of string using switch case?
What is sizeof array?
pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)