What is meaning of "Void main" in C Language.
Answer Posted / rahul tripathi
main is also a function.Operating system will call this function.void means it returns nothing.when the function completed it task, it just goes out of scope.
http://www.cetpainfotech.com/technology/c-language-training
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Where static variables are stored in memory in c?
Can a pointer point to null?
Whats s or c mean?
What is Dynamic memory allocation in C? Name the dynamic allocation functions.
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference
What will be the outcome of the following conditional statement if the value of variable s is 10?
Describe the steps to insert data into a singly linked list.
What is extern storage class in c?
How does placing some code lines between the comment symbol help in debugging the code?
What is the use of bit field?
What are multidimensional arrays?
Why is %d used in c?
What are pointers really good for, anyway?
Describe newline escape sequence with a sample program?
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.