Answer Posted / kathir
Type casting p to a pointer to integer.If p would have been
p=0x00000004 then this would increase the pointer by 4.
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
Is that possible to store 32768 in an int data type variable?
What is line in c preprocessor?
Do string constants represent numerical values?
#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); }
can any one please explain, how can i access hard disk(physical address)? it is possible by the use of far,near or huge pointer? if yes then please explain......
Why structure is used in c?
What is masking?
Explain modulus operator.
Where are local variables stored in c?
the 'sizeof' operator reported a larger size than the calculated size for a structure type. What could be the reason?
What is return in c programming?
In c programming, explain how do you insert quote characters (? And ?) Into the output screen?
Are the expressions * ptr ++ and ++ * ptr same?
Explain what is the heap?
How is a macro different from a function?