main()
{
char *p;
p="Hello";
printf("%c\n",*&*p);
}
Answer Posted / vignesh1988i
the output will be 'H'...... this is because... first the
variables with pointers as:
*
&
*
p
so it woill process as givwn above in stack
| Is This Answer Correct ? | 10 Yes | 2 No |
Post New Answer View All Answers
How would you obtain the current time and difference between two times?
Write a program to generate the Fibinocci Series
Write a factorial program using C.
Find duplicates in a file containing 6 digit number (like uid) in O (n) time.
What is a void * in c?
to find the closest pair
Can we access array using pointer in c language?
What are the three constants used in c?
What is new line escape sequence?
What is the difference between call by value and call by reference in c?
Write a progarm to find the length of string using switch case?
What is "Duff's Device"?
Explain how can a program be made to print the name of a source file where an error occurs?
differentiate built-in functions and user – defined functions.
What is pointer to pointer in c?