void main()
{int i=2;
printf("%d%d%d",i,++i,i++);
getch();
}
Answer Posted / gowthamraj
244
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
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 is maximum size of array in c?
Explain output of printf("Hello World"-'A'+'B'); ?
WRITE A CODE IN C TO SEARCH A FILE FROM NOTEPAD FILE.
Write a program to generate a pulse width frequency of your choise,which can be variable by using the digital port of your processor
what is bit rate & baud rate? plz give wave forms
List the difference between a "copy constructor" and a "assignment operator"?
What does c in a circle mean?
Can a program have two main functions?
What is indirection?
which is conditional construct a) if statement b) switch statement c) while/for d) goto
write a C program: To search a file any word which starts with ?a?. If the word following this ?a? starts with a vowel.Then replace this ?a? with ?a? with ?an?. redirect with the output onto an output file.The source file and destination file are specified by the user int the command line.
Please send me WIPRO technical question to my mail ID.. its nisha_g28@yahoo.com please its urgent
Do you know the purpose of 'register' keyword?
Explain what is the difference between functions getch() and getche()?