int main()
{
unsigned char a = 0;
do {
printf("%d=%c\n",a,a);
a++;
}while(a!=0);
return 0;
} can anyone please explain me output????
Answer / senthilkumar
unsigned char range 0-255. So.. this program prints 0-255 and also equivalent ascii character. ..program is exit after 255...becz after 255 'a' become 0.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is action and transformation in spark?
what is array?
difference between c and c++?
What is a const pointer?
#‎include‬<stdio.h> void main() { int i; for(i=5;0;i++) { printf("%d",i); } }
main difference between c and c++ language
how many types of operators are include in c language a) 4 b) 6 c) 8 d) 12
How many bytes are occupied by near, far and huge pointers (dos)?
What are the ways to a null pointer can use in c programming language?
int i=10; printf("%d %d %d", i, i=20, i);
Sir i want e-notes of C languge of BAlaguruswami book i.e scanned or pdf file of balaguruswamy book on c language.PLEASE SEND ME on my mail id ajit_kolhe@rediff.com
what is the difference between const volatile int i & volatile const int j;