What is the difference between void main() and int main()?
Answer Posted / nashiinformaticssolutions
void main() is not standard; int main() is required by the C standard to return an integer.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is break statement?
What is mean by data types in c?
write a program to concatenation the string using switch case?
what are the 10 different models of writing an addition program in C language?
I need testPalindrome and removeSpace
#include
Which is better oop or procedural?
define string ?
2) Write a program that will help Air Traffic Control for an airport to view the sequence of flights ready for take-off. The airport can accommodate 10 flights waiting for take-off at any point in time. Each flight has a unique 3 digit numeric identifier. Each time a flight takes-off, Air Traffic Control adds a flight to the waitlist. Each time a flight is added to the waitlist, the list of flights waiting to take-off must be displayed. When a flight is cleared for take-off, Air Traffic Control removes the flight from the waitlist. Each time a flight takes-off, the list of flights waiting to take-off must be displayed. Sequence of take-off is the sequence of addition to the waitlist
What are void pointers in c?
Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
How a string is stored in c?
Why void main is used in c?
What is #line in c?
What is the size of empty structure in c?
How can I read a binary data file properly?