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 |
write a c program in such a way that if we enter the today date the output should be next day's date.
Write a program in c to replace any vowel in a string with z?
What is the proper way of these job Tell me about there full work
how to get starting address of a running C program
Q.1 write aprogram to stack using linklist o insert 40 items? Q.2 write a program to implement circular queue with help of linklist?
What is d scanf?
Write c-code for 5+55+555+5555+55555+555555+5555555. Output will be it's answer...
What are the basic data types associated with c?
Is it possible to run using programming C for Java Application?
how to capitalise first letter of each word in a given string?
WAP to accept first name,middle name & last name of a student display its initials?
int i=~0; uint j=(uint)i; j++; printf(“%d”,j);