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


Please Help Members By Posting Answers For Below Questions

What are loops c?

712


Differentiate between ordinary variable and pointer in c.

730


Why is extern used in c?

723


What are the application of void data type in c?

889


Why & is used in c?

808






How do I get a null pointer in my programs?

747


What is 'bus error'?

743


What is data types?

721


Explain argument and its types.

701


What is typedef?

812


What is a buffer in c?

670


Is it better to use a macro or a function?

761


How can I do graphics in c?

681


What does #pragma once mean?

784


What is meant by gets in c?

703