What is structure in c explain with example?
No Answer is Posted For this Question
Be the First to Post Answer
Hai what is the different types of versions and their differences
#define d 10+10 main() { printf("%d",d*d); }
What is c variable?
What does void main return?
What is the result main() { char c=-64; int i=-32 unsigned int u =-16; if(c>i){ printf("pass1,"); if(c<u) printf("pass2"); else printf("Fail2");} else printf("Fail1); if(i<u) printf("pass2"); else printf("Fail2") } a)Pass1,Pass2 b)Pass1,Fail2 c)Fail1,Pass2 d)Fail1,Fail2 e)none
What is a void pointer? When is a void pointer used?
What is #define size in c?
List the difference between a "copy constructor" and a "assignment operator"?
What is a buffer in c?
program for validity of triangle from 3 side
output for following code??? main() { int x=2,y,z; x*=3+2; printf("1.%d\n",x); x*=y=z=4; printf("2.%d %d %d\n",x,y,z); x=y==z; printf("3.%d\n",x); x==(y=z); printf("%d",x); }
main() { enum _tag{ left=10, right, front=100, back}; printf("%d, %d, %d, %d", left, right, front, back); }