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 differnce between programing langauge and tool? is sas is a programing langauge r tool?
what is event driven software and what is procedural driven software?
What are register variables? What are the advantage of using register variables?
What is data structure in c programming?
How do c compilers work?
What are the 5 elements of structure?
What the different types of arrays in c?
Does c have class?
Without Computer networks, Computers will be half the use. Comment.
What is difference between arrays and pointers?
What is the use of clrscr?
What are the features of c language?
What is the need of structure in c?
What are the types of functions in c?
When should volatile modifier be used?