Hi,
main()
{
}
Is a user defined function or Built in Functionn
Answer Posted / vikas kumar shakya
main() is a user defined function. it is the entry point of
any program.
At run time the main() function is searched as the entry to
start the program.
| Is This Answer Correct ? | 23 Yes | 6 No |
Post New Answer View All Answers
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
Which is an example of a structural homology?
What is the use of getchar() function?
what does static variable mean?
What is hash table in c?
find the sum of two matrices and WAP for it.
Is there sort function in c?
Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as “****”.
What are different types of operators?
What is the difference between Printf(..) and sprint(...) ?
What are the advantage of c language?
write a program to rearrange the array such way that all even elements should come first and next come odd
#include
What is c token?
How do I get an accurate error status return from system on ms-dos?