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
What is the use of header?
How can I sort a linked list?
What is function prototype in c language?
What is sizeof c?
Explain union. What are its advantages?
Why doesn't C support function overloading?
What is function in c with example?
What is string length in c?
what is event driven software and what is procedural driven software?
Why can’t constant values be used to define an array’s initial size?
write a c program in such a way that if we enter the today date the output should be next day's date.
write a proram to reverse the string using switch case?
The difference between printf and fprintf is ?
Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.
How to define structures? ·