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 |
‘ C’ PROGRAME TO SHOW THE TYPE OF TRANGLE BY ACCEPTING IT’S LENGTH .
What does != Mean in c?
How can I prevent other programmers from violating encapsulation by seeing the private parts of my class?
Write a simple program to find the size of different basic data types in C.
struct tag{ auto int x; static int y; };main() { struct tag s; s.x=4; s.y=5; printf(“%d”,s.x); }
How to declare a variable?
What is the explanation for the dangling pointer in c?
What are the advantages and disadvantages of a heap?
implement general tree using link list
Write a program to know whether the input number is an armstrong number.
How the c program is executed?
Are enumerations really portable?