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
Difference between macros and inline functions? Can a function be forced as inline?
What does return 1 means in c?
What is an endless loop?
Why do some versions of toupper act strangely if given an upper-case letter?
Why clrscr is used after variable declaration?
What functions are used in dynamic memory allocation in c?
What is a macro in c preprocessor?
Why do we use & in c?
write a program for the normal snake games find in most of the mobiles.
How can I write a function that takes a format string and a variable number of arguments?
Is null valid for pointers to functions?
What is bubble sort in c?
Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon
Why void main is used in c?
What are the salient features of c languages?