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


Please Help Members By Posting Answers For Below Questions

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

2612


Can you please explain the difference between malloc() and calloc() function?

720


formula to convert 2500mmh2o into m3/hr

622


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.

1908


Explain the difference between exit() and _exit() function?

753






What is pre-emptive data structure and explain it with example?

3322


Is this program statement valid? INT = 10.50;

785


What is the purpose of & in scanf?

701


What is wrong with this code?

778


Do you know pointer in c?

701


What are variables and it what way is it different from constants?

876


What is the significance of scope resolution operator?

976


Differentiate between calloc and malloc.

890


Explain how can a program be made to print the name of a source file where an error occurs?

807


What are the different types of errors?

723