What is meaning of "Void main" in C Language.
Answer Posted / sameer ashturkar
void means simply it's return zero(0)
| Is This Answer Correct ? | 23 Yes | 30 No |
Post New Answer View All Answers
What is the sizeof () a pointer?
Where are the auto variables stored?
Where are local variables stored in c?
What is the difference between array_name and &array_name?
develop algorithms to add polynomials (i) in one variable
List the difference between a 'copy constructor' and a 'assignment operator' in C?
What is static volatile in c?
Iam a B.Tech graduate and completed my engineering in 2009, from 2005 to 2009 and after that i had done nothing.Now i want to do job and get into BPO field . Friends give me suggestions as what to say in interview... if they ask me that what would you had done ... these many years without doing job ??????? pls urgent
Explain what are the different data types in c?
How can I call fortran?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
Why do we use int main?
Can you apply link and association interchangeably?
Can a program have two main functions?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }