Hi,
main()
{
}
Is a user defined function or Built in Functionn
Answer Posted / abhishek munde
main () is user defined function built in function.....
bcoz we define what it will do... and it already has it's
name as main.
| Is This Answer Correct ? | 10 Yes | 26 No |
Post New Answer View All Answers
What is the difference between near, far and huge pointers?
what are the different storage classes in c?
Differentiate between functions getch() and getche().
When should a type cast be used?
Explain how can I manipulate strings of multibyte characters?
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
What is #include stdio h and #include conio h?
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
How do I determine whether a character is numeric, alphabetic, and so on?
Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?
what is the structure pointer?
What is calloc in c?
Can we declare function inside main?
Why doesnt this code work?
What is auto keyword in c?