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
What is the purpose of clrscr () printf () and getch ()?
What are the advantages of using Unions?
What are the different types of C instructions?
write a c program in such a way that if we enter the today date the output should be next day's date.
What are dangling pointers in c?
What is New modifiers?
What is typeof in c?
What is difference between structure and union?
What is null pointer in c?
Write a C program to accept a matrix of any size. Find the frequency count of each element in the matrix and positions in which they appear in the matrix
What is a loop?
Explain null pointer.
Explain what are reserved words?
What are the advantages of the functions?
Why c is procedure oriented?