char ch=10;printf("%d",ch);what is the output
Answer Posted / yash
my output is for
What is output of followingvoid main() [3]
{char ch;for(ch=0;ch<=127;ch)printf("%c %d \n", ch, ch);}
ans: 1024
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What does c in a circle mean?
What is a 'null pointer assignment' error?
hi any body pls give me company name interview conduct "c" language only
What are linker error?
write a C program:There is a mobile keypad with numbers 0-9 and alphabets on it. Take input 0f 7 keys and then form a word from the alphabets present on the keys.
Devise a program that inputs a 3 digit number n and finds out whether the number is prime or not. Find out its factors.
How can I change the size of the dynamically allocated array?
What is a pointer variable in c language?
How do I create a directory? How do I remove a directory (and its contents)?
What is spaghetti programming?
How can I trap or ignore keyboard interrupts like control-c?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
What is an arrays?
What are global variables and explain how do you declare them?
What is the use of structure padding in c?