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
Why is void main used?
Explain the difference between #include "..." And #include <...> In c?
What are global variables and how do you declare them?
Can a pointer be static?
What is the advantage of using #define to declare a constant?
Write a program to check armstrong number in c?
What are 'near' and 'far' pointers?
write a program fibonacci series and palindrome program in c
Is c still used?
How can you increase the allowable number of simultaneously open files?
explain what are actual arguments?
What is wrong with this program statement?
Why c is called object oriented language?
Can one function call another?
In C programming, how do you insert quote characters (‘ and “) into the output screen?