Hi,
main()
{
}
Is a user defined function or Built in Functionn
Answer Posted / sree
main() itself is a predefined function.
where as main() is a userdefined function because there we
are writing the internal part.
| Is This Answer Correct ? | 27 Yes | 8 No |
Post New Answer View All Answers
How can I read in an object file and jump to locations in it?
What is methods in c?
Write program to remove duplicate in an array?
How to draw the flowchart for structure programs?
How will you delete a node in DLL?
Explain what is the difference between null and nul?
How is a null pointer different from a dangling pointer?
what is a function method?give example?
What is %s and %d in c?
What is array of structure in c?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
In a switch statement, what will happen if a break statement is omitted?
Why void is used in c?
How can I trap or ignore keyboard interrupts like control-c?
Why calloc is better than malloc?