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

Explain what is the difference between text files and binary files?

617


Is c procedural or object oriented?

580


What are header files in c?

616


What is pointers in c?

652


How can I read a binary data file properly?

635






Design a program which assigns values to the array temperature. The program should then display the array with appropriate column and row headings.

1768


Explain is it better to bitshift a value than to multiply by 2?

718


What is a method in c?

626


Explain how can you determine the size of an allocated portion of memory?

624


What are structure types in C?

666


Can we increase size of array in c?

540


`write a program to display the recomended action depends on a color of trafic light using nested if statments

1631


What is difference between stdio h and conio h?

884


What is sorting in c plus plus?

565


What are the types of data files?

729