which header file contains main() function in c?

Answer Posted / a

if it is just a naming convention then how can it have
return type and arguement like a function...

plz don't misguide the ppls

Is This Answer Correct ?    0 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the types of data types and explain?

675


What is the main difference between calloc () and malloc ()?

576


How to get string length of given string in c?

611


Explain how can I make sure that my program is the only one accessing a file?

632


What is dynamic dispatch in c++?

560






What is the difference between int main and void main in c?

595


Write a program to print factorial of given number without using recursion?

571


What are register variables? What are the advantage of using register variables?

689


What does != Mean in c?

594


What is a lookup table in c?

629


What are the 5 types of organizational structures?

554


What is the general form of #line preprocessor?

590


1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.

1665


What is the difference between pure virtual function and virtual function?

654


Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc

5058