Answer Posted / ankur mohan sharma
Main is a user defined function.
It has an important property that it is first recognised by compiler. So it must be present in a program.
A user defined function is one whose defination is given by user and Since you define main's working. So it is a user defined function.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Do character constants represent numerical values?
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.
What is pass by reference in c?
Combinations of fibanocci prime series
the 'sizeof' operator reported a larger size than the calculated size for a structure type. What could be the reason?
What does %p mean c?
What is the ANSI C Standard?
What is identifiers in c with examples?
what are the different storage classes in c?
please explain every phase in the "SDLC" in the dotnet.
in any language the sound structure of that language depends on its a) character set, input/output function, its control structures b) character set, library functions, input/output functions its control structures c) character set, library functions, control sturctures d) character set, operators, its control structures
What are the features of c language?
main() { printf("hello"); fork(); }
Why c is called a mid level programming language?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }