What is getch() function?
How to write a multi-statement macro?
What is assert and when would I use it?
what is the output of the following code? main() { int I; I=0x10+010+10; printf("x=%x",I); } give detailed reason
main() { int x=5,y=10,z=0; x=x++ + y++; y=y++ + ++x; z=x++ + ++y; printf("%d%d%d\n",x,y,z); }
How to draw the flowchart for structure programs?
What is your stream meaning?
what is linkage error when it occurs in c program
enum day = { jan = 1 ,feb=4, april, may} what is the value of may? a)4 b)5 c)6 d)11 e)none of the above
What is extern storage class in c?
what are bps & baud rates? differentiate these two?
Can we change the value of constant variable in c?
what is the difference b/w NULL and null?