What does emoji p mean?
No Answer is Posted For this Question
Be the First to Post Answer
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
Explain setjmp()?
what is the difference between embedded c and turbo c ?
Unsigned char c; for ( c=0;c!=256;c++2) printf("%d",c); No. of times the loop is executed ?
How do I use void main?
What is the benefit of using const for declaring constants?
print out put like this form 1 2 3 4 5 6 3 5 7 9 11 8 12 16 20
What is structure packing ?
in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above
Should a function contain a return statement if it does not return a value?
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
difference between c and c++?