Where is volatile variable stored?
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); }
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
how can I convert a string to a number?
What are pragmas and what are they good for?
What is the difference between struct and typedef struct in c?
Switch (i) i=1; case 1 i++; case 2 ++i; break; case 3 --i; Output of i after executing the program
#define MAX(x,y) (x) > (y) ? (x) : (y) main() { int i = 10, j = 5, k = 0; k = MAX(i++, ++j); printf("%d %d %d", i,j,k); } what will the values of i , j and k? }
14 Answers CDAC, GATE, NDS, TCS,
Write a program to accept a character & display its corrosponding ASCII value & vice versa?
Explain void pointer?
Why doesnt long int work?
swap 2 numbers without using third variable?
Please send me WIPRO technical question to my mail ID.. its nisha_g28@yahoo.com please its urgent