Hi,
main()
{
}
Is a user defined function or Built in Functionn
Answer Posted / suresh kumar
main() is a system declared bt user defined function
coz main is declared as built in functions but we give the
definition of main according to us. means it is defined by
the user.
| Is This Answer Correct ? | 6 Yes | 4 No |
Post New Answer View All Answers
What standard functions are available to manipulate strings?
Why clrscr is used after variable declaration?
What are the Advantages of using macro
What is a null pointer assignment error? What are bus errors, memory faults, and core dumps?
How does selection sort work in c?
What is meant by recursion?
How can I get the current date or time of day in a c program?
What is difference between structure and union with example?
In the DOS enveronment, normal RAM that resides beyond the 1mb mark. a) expanded memory b) swapped memory c) Extended memory d) none
What is the difference between functions abs() and fabs()?
why return type of main is not necessary in linux
Explain modulus operator. What are the restrictions of a modulus operator?
What are the primitive data types in c?
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
Describe the header file and its usage in c programming?