Unsigned char c;
for ( c=0;c!=256;c++2)
printf("%d",c);
No. of times the loop is executed ?
Post New Answer View All Answers
Can static variables be declared in a header file?
Is printf a keyword?
Explain about C function prototype?
What are bitwise shift operators in c programming?
Explain logical errors? Compare with syntax errors.
What is the significance of scope resolution operator?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
What is context in c?
What is the maximum length of an identifier?
the constant value in the case label is followed by a a) semicolon b) colon c) braces d) none of the above
What is class and object in c?
What are shell structures used for?
Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon
What is the general form of a C program?
What is modifier & how many types of modifiers available in c?