What is meaning of "Void main" in C Language.
Answer Posted / sneh pranjal
Main() is the function from which a c program starts its execution.And every function returns some value after its execution.
So it important in most of the C program.If we dont need any return type we declare a function starting with void.
Means void is a return type.void means not returning any thing.
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
What does the function toupper() do?
Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]
How is a macro different from a function?
How do I create a directory? How do I remove a directory (and its contents)?
Can true be a variable name in c?
Do you have any idea about the use of "auto" keyword?
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
What is operator precedence?
What is difference between far and near pointers?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
general for is %wd,f-d; in this system "w" means a) 'w' represent total width of digits b) 'w' represent width which includes the digits before,after decimal place and the decimal point c) 'w' represent width which includes the digits before only d) 'w' represent width after decimal place only
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?
What is a list in c?
Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?
a character or group of characters that defines a register,or a part of storage a) memory b) byte c) address d) linear list