void main()
{
//char ch;
unsigned char ch;
clrscr();
for(ch =0;ch<= 127; ch++)
printf(" %c= %d \t ", ch, ch);
}
output?
Answer Posted / honey
how???
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
How can I remove the leading spaces from a string?
Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.
Can we declare function inside main?
Explain what is output redirection?
What is getch() function?
Explain the priority queues?
What are run-time errors?
What is the explanation for modular programming?
What is c language in simple words?
What are the types of type qualifiers in c?
Why is c so popular?
What are enums in c?
How can I read a binary data file properly?
State the difference between x3 and x[3].
Can a local variable be volatile in c?