What is meaning of "Void main" in C Language.
Answer Posted / manoranjan kuiri
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 ? | 1 Yes | 0 No |
Post New Answer View All Answers
Calculate the weighted average of a list of n numbers using the formula xavg = f1x1+f2x2+ ….+ fnxn where the f’s are fractional weighting factors, i.e., 0<=fi<1, and f1+f2+….+fn = 1
How can I run c program?
Describe dynamic data structure in c programming language?
#include
Do you know the use of fflush() function?
What is a program flowchart?
How can I copy just a portion of a string?
What is indirection? How many levels of pointers can you have?
What is the size of enum in c?
explain how do you use macro?
What are structural members?
What is string constants?
Where local variables are stored in c?
How do you sort filenames in a directory?
Can an array be an Ivalue?