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
What is LINKED LIST? How can you access the last element in a linked list?
What is wrong with this statement? Myname = 'robin';
A routine usually part of the operation system that loads a program into memory prior to execution a) linker b) loader c) preprocessor d) compiler
Draw a diagram showing how the operating system relates to users, application programs, and the computer hardware ?
Lists the benefits of c programming language?
What are the types of type specifiers?
Is that possible to store 32768 in an int data type variable?
a sequence of bytes with one to one corrspondence to those in the external device a) sequential addressing b) address c) byte code d) none
Where in memory are my variables stored?
What is unsigned int in c?
in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above
How does sizeof know array size?
Are the variables argc and argv are always local to main?
What is a volatile keyword in c?
Why we not create function inside function.