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
How do you redirect a standard stream?
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
What does typeof return in c?
Explain two-dimensional array.
Why c is known as a mother language?
How can this be legal c?
C language questions for civil engineering
Why is it important to memset a variable, immediately after allocating memory to it ?
what are the advanced features of functions a) function declaration and prototypes b) calling functions by value or by reference c) recursion d) all the above
Why header file is used in c?
Explain the advantages of using macro in c language?
If I have a char * variable pointing to the name of a function ..
hi send me sample aptitude papers of cts?
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
How do we make a global variable accessible across files? Explain the extern keyword?