main()
{
char *p;
p="Hello";
printf("%c\n",*&*p);
}

Answer Posted / surenda pal singh chouhan

H

Explanation:
* is a dereference operator & is a reference operator.
They can be applied any number of times provided it is
meaningful. Here p points to the first character in the
string "Hello". *p dereferences it and so its value is H.

Is This Answer Correct ?    23 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

A collection of functions,calls,subroutines or other data a) library b) header files c) set of files d) textfiles

632


What are the difference between a free-standing and a hosted environment?

728


What is volatile, register definition in C

678


What is sizeof return in c?

605


How many types of operator or there in c?

590






Explain enumerated types in c language?

594


#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }

704


What is an identifier?

616


How will you delete a node in DLL?

672


Calculate 1*2*3*____*n using recursive function??

1505


How can I run c program?

672


What is ambagious result in C? explain with an example.

2041


What is clrscr in c?

662


What is pointers in c with example?

568


What are the valid places to have keyword “break”?

642