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 function and its example?
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
what is a function method?give example?
illustrate the use of address operator and dereferencing operator with the help of a program guys plzzz help for this question
How do you determine the length of a string value that was stored in a variable?
What is the stack in c?
What is the use of printf() and scanf() functions?
The number of bytes of storage occupied by short, int and long are a) 2, 2 and 4 b) 2, 4 and 4 c) 4, 4 and 4 d) none
What is the use of static variable in c?
How can I implement sets or arrays of bits?
What is the benefit of using const for declaring constants?
1.int a=10; 2.int b=20; 3. //write here 4.b=30; Write code at line 3 so that when the value of b is changed variable a should automatically change with same value as b. 5.
what is the difference between 123 and 0123 in c?
What is ctrl c called?
What are logical errors and how does it differ from syntax errors?