Hi,
main()
{
}

Is a user defined function or Built in Functionn

Answer Posted / ashok kumar

According to definition of predefined function,It should
perform some task,can any one tell the particularly the task
of main()function?.then the answer is clear main() is not
predefined,so then we are defining main()so absolutely user
defined function....



This is definition of predefined funtion "(computing) Any of
a set of subroutines that perform standard mathematical
functions included in a programming language; either
included in a program at compilation time, or called when a
program is executed "

Is This Answer Correct ?    2 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is an operator?

659


If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above

626


What are the storage classes in C?

629


Distinguish between actual and formal arguments.

593


I need previous papers of CSC.......plz help out by posting them.......

1818






Write a program to print numbers from 1 to 100 without using loop in c?

644


Write a program to input the price of 1 burger and the number of burgers eaten by a group of friends .print the total amount to be paid by the group?

580


Explain enumerated types in c language?

608


Write a code of a general series where the next element is the sum of last k terms.

598


What are the loops in c?

597


Why use int main instead of void main?

601


Give me the code of in-order recursive and non-recursive.

890


#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }

633


What the different types of arrays in c?

618


Explain what are the __date__ and __time__ preprocessor commands?

596