Hi,
main()
{
}
Is a user defined function or Built in Functionn
Answer Posted / manjunath
Its a user defined function. How can it be inbuilt
function? We are the one who writes the main function.
Program execution starts with main function. We can also
compile a code without main, but we cant create exe, since
it requires a main function to execute.
| Is This Answer Correct ? | 55 Yes | 9 No |
Post New Answer View All Answers
Explain what is the advantage of a random access file?
Why double pointer is used in c?
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
Explain how can a program be made to print the line number where an error occurs?
What is header file in c?
What is a file descriptor in c?
What is an lvalue?
What do header files do?
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
What is a shell structure examples?
How do you define CONSTANT in C?
What is the modulus operator?
What are Macros? What are its advantages and disadvantages?
explain what is fifo?
Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above