What is meaning of "Void main" in C Language.
Answer Posted / bharti
As name imlies main() is a function ,where the exection of
a program srart. when we use simply main() that by dafault
return int value and we use void main(),that return
nothing but when we use int main()that retun value
according to our program
| Is This Answer Correct ? | 14 Yes | 4 No |
Post New Answer View All Answers
explain what is fifo?
What is local and global variable in c?
Where can I get an ansi-compatible lint?
What are reserved words with a programming language?
Explain b+ tree?
what is a constant pointer in C
What is the use of function in c?
Write a program to find the biggest number of three numbers in c?
An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above
What is %d used for?
What are the advantages of Macro over function?
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none
What is meant by high-order and low-order bytes?
what are the different storage classes in c?
Explain the difference between getch() and getche() in c?