What is meaning of "Void main" in C Language.
Answer Posted / madhusmita mishra
The main function returns a void value .
| Is This Answer Correct ? | 279 Yes | 93 No |
Post New Answer View All Answers
Explain what is the best way to comment out a section of code that contains comments?
What are linker error?
What is sizeof int in c?
C program execution always begins with a) #include b) comment (/*-------*/) c) main() d) declaration instructions
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
What is s in c?
Compare array data type to pointer data type
a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);
What is optimization in c?
What is extern c used for?
What is the use of a conditional inclusion statement in C?
Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings
Find duplicates in a file containing 6 digit number (like uid) in O (n) time.
Explain what is the difference between #include and #include 'file' ?
How can you pass an array to a function by value?