void main()
{
//char ch;
unsigned char ch;
clrscr();
for(ch =0;ch<= 127; ch++)
printf(" %c= %d \t ", ch, ch);
}
output?
Answer Posted / guest
null
Is This Answer Correct ? | 1 Yes | 1 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
Can you please explain the difference between malloc() and calloc() function?
formula to convert 2500mmh2o into m3/hr
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.
Explain the difference between exit() and _exit() function?
What is pre-emptive data structure and explain it with example?
Is this program statement valid? INT = 10.50;
What is the purpose of & in scanf?
What is wrong with this code?
Do you know pointer in c?
What are variables and it what way is it different from constants?
What is the significance of scope resolution operator?
Differentiate between calloc and malloc.
Explain how can a program be made to print the name of a source file where an error occurs?
What are the different types of errors?