What is meaning of "Void main" in C Language.
Answers were Sorted based on User's Feedback
Answer / kiruthika
viod is a return type which does not return any value after
execution.
| Is This Answer Correct ? | 1 Yes | 2 No |
Answer / pravin kumar
void main is main functio in c language where :-
= void means no return of any value.
= main is the function from which a program starts its
execution.whithout main(),program can compile but not run.
both the function are used to execute the program.
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / ashturkar sameer
void main means does not return valu at exicution time
mens return (0)
| Is This Answer Correct ? | 27 Yes | 31 No |
Answer / sameer ashturkar
void means simply it's return zero(0)
| Is This Answer Correct ? | 23 Yes | 30 No |
provide an example of the Group by clause, when would you use this clause
void main() { static int i = 5; if(--i) { main(); printf("%d ",i); } } what would be output of the above program and justify your answer? }
5 Answers C DAC, CDAC, Infosys, Wipro,
can we have joblib in a proc ?
C program code int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
What are static variables, and where are they stored?
Explain what is the heap?
What does printf does?
how to swap 4 number without using temporary number?
who will call your main function in c under linux?
which type of aspect you want from the student.
write a c program to store and print name,address,roll.no of a student using structures?
change to postfix a/(b+c*d-e)