Unsigned char c;
for ( c=0;c!=256;c++2)
printf("%d",c);
No. of times the loop is executed ?
Answer Posted / prabu
infinite loop executed
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain what is the stack?
Explain what is a static function?
the 'sizeof' operator reported a larger size than the calculated size for a structure type. What could be the reason?
Tell me about low level programming languages.
The difference between printf and fprintf is ?
What is indirection?
cavium networks written test pattern ..
What is structure padding and packing in c?
What does the function toupper() do?
What are types of preprocessor in c?
How old is c programming language?
Why do we use & in c?
What is Dynamic memory allocation in C? Name the dynamic allocation functions.
Define the scope of static variables.
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }