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
Define the scope of static variables.
In C language what is a 'dangling pointer'?
If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
Explain how can type-insensitive macros be created?
What is the auto keyword good for?
What is break statement?
How do I swap bytes?
Explain the difference between getch() and getche() in c?
Linked lists -- can you tell me how to check whether a linked list is circular?
What are the advantages of external class?
What is the purpose of sprintf?
Difference between pass by reference and pass by value?
What does the && operator do in a program code?
What are the 4 types of functions?