Hi,
main()
{
}
Is a user defined function or Built in Functionn
Answer Posted / eklavya sharma
main is a kind of function which is a user defined function for the C compiler developer and it is built in or predifined function to the users using that compiler. The prototype has already been defined in the compiler itself we the users can't change the meaning of that unless or until we write our own compiler.
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
What is wrong in this statement?
my project name is adulteration of chille powder.how can i explain it to the hr when he asks me about the project?
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
What is main () in c?
How to explain the final year project as a fresher please answer with sample project
What does volatile do?
What is s or c?
What is a program flowchart?
Why use int main instead of void main?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
Is c dynamically typed?
What is an identifier?
why we wont use '&' sing in aceesing the string using scanf
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
Explain how do you determine a file’s attributes?