Is main() function predfined or userdefined?
Answers were Sorted based on User's Feedback
main() is a predefined function because compiler starts
executing only in main() function. It better to press F7
function key after compiling your program because the
control first passes only to main() function
| Is This Answer Correct ? | 0 Yes | 7 No |
how do you execute a c program in unix.
what is an array
A routine usually part of the operation system that loads a program into memory prior to execution a) linker b) loader c) preprocessor d) compiler
Differentiate between #include<...> and #include '...'
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 does extern mean in a function declaration?
what is the c source code for the below output? 5555555555 4444 4444 333 333 22 22 1 1 22 22 333 333 4444 4444 5555555555
what are advantages of U D F?
What is function in c with example?
WHO WROTE C LANGUAGE?
Which one would you prefer - a macro or a function?
write a program that will open the file, count the number of occurences of each word in the the complete works of shakespeare. You will then tabulate this information in another file.