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
"C" language developed by "Dennis Ritchie" at AT & T. his remarks are a) too general, too abstract b) could deal with only specific problems c) lost generality of BCPL and B restored d) no remarks
i got 75% in all semester am i eligible for your company
What is #pragma statements?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
What is the explanation for prototype function in c?
What is meant by gets in c?
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
What are the disadvantages of external storage class?
what is the structure pointer?
What are integer variable, floating-point variable and character variable?
What are preprocessor directives in c?
What is main function in c?
What is pointer and structure in c?
Is there any algorithm to search a string in link list in the minimum time?(please do not suggest the usual method of traversing the link list)
How can I run c program?