Answer Posted / trushali
when we write void main it means its not returning any value
to main function,so we do not need write return 0 at the end
of program.
but when we write main only then by default compiler
consider it as int main,and at the end we need to write
return 0(means successful completion of the program without
any problem).
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How does free() know explain how much memory to release?
Is null a keyword in c?
What does struct node * mean?
Write a progarm to find the length of string using switch case?
What is the best way of making my program efficient?
What is the use of ?: Operator?
how to make a scientific calculater ?
Explain union.
what are non standard function in c
What is the difference between declaring a variable by constant keyword and #define ing that variable?
Explain that why C is procedural?
explain how do you use macro?
What is difference between structure and union in c?
What is a spanning Tree?
What are pointers? What are stacks and queues?