What is meaning of "Void main" in C Language.
Answer Posted / rohit
void mean no return type. and main does not return any value so we use void main .
| Is This Answer Correct ? | 73 Yes | 23 No |
Post New Answer View All Answers
Here is a good puzzle: how do you write a program which produces its own source code as output?
Explain what are linked list?
What is structure data type in c?
how we can make 3d venturing graphics on outer interface
What is the purpose of & in scanf?
What are the different types of pointers used in c language?
There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?
What is data structure in c language?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
why programs in c are running with out #include
Which are low level languages?
Explain what are the __date__ and __time__ preprocessor commands?
When should I declare a function?
Can a variable be both constant and volatile?
How to write c functions that modify head pointer of a linked list?