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 are loops c?
Differentiate between ordinary variable and pointer in c.
Why is extern used in c?
What are the application of void data type in c?
Why & is used in c?
How do I get a null pointer in my programs?
What is 'bus error'?
What is data types?
Explain argument and its types.
What is typedef?
What is a buffer in c?
Is it better to use a macro or a function?
How can I do graphics in c?
What does #pragma once mean?
What is meant by gets in c?