1) int main() {
unsigned char a = 0;
do {
printf("%d=%c\n",a,a);
a++;
}while(a!=0);
return 0;
}
can anyone please explain the explain the output
Answer Posted / vidyashree b l
0
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
Is there a built-in function in C that can be used for sorting data?
program to convert a integer to string in c language'
Explain how do you declare an array that will hold more than 64kb of data?
What is #define in c?
What are the modifiers available in c programming language?
What are the back slash character constants or escape sequence charactersavailable in c?
Why is c not oop?
hi, which software companys will take,if d candidate's % is jst 55%?
How many main () function we can have in a project?
main() { printf("hello"); fork(); }
how can i write a program that prints out a box such that whenever i press any key8(coordinate number) on the keyboard, the box moves.
What is meant by operator precedence?
What is strcpy() function?
write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...
Explain what is the most efficient way to store flag values?