how many times of error occur in C
Answers were Sorted based on User's Feedback
Answer / arun
syntax Error,
compile time Error,
runtime Error...
we cont consider logical Errors as Errors...
it is consider to be bugs...
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the difference between big endian form and little endian form? write a code to convert big endian form to little endian and vice versa..
What are header files? What are their uses?
What is #include stdio h?
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
write a program in reverse the string without using pointer,array,global variable declaration,lib fun only using a function?
Process by which one bit pattern in to another by bit wise operation is?
What is exit() function?
what is c language.
void main() { int i=5; printf("%d",i+++++i); }
What is the difference between union and anonymous union?
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
Explain what are linked list?