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
For what purpose null pointer used?
Is c language still used?
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none
Difference between strcpy() and memcpy() function?
what is the height of tree if leaf node is at level 3. please explain
What header files do I need in order to define the standard library functions I use?
What is spaghetti programming?
Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]
What 'lex' does?
How can a number be converted to a string?
What is c language in simple words?
Does * p ++ increment p or what it points to?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
Explain what does the format %10.2 mean when included in a printf statement?
List some applications of c programming language?