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 is a sequential access file?

647


What does return 1 means in c?

583


Want to know how to write a C program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.

1520


Does * p ++ increment p or what it points to?

614


What is the deal on sprintf_s return value?

641






program to convert a integer to string in c language'

1984


Can the curly brackets { } be used to enclose a single line of code?

714


What is #define?

575


A collection of data with a given structure for excepting storing and providing on demand data for multiple users a) linked list b) datastructer c) database d) preprocessor

623


Explain how can I open a file so that other programs can update it at the same time?

590


Is it better to use malloc() or calloc()?

648


What is the purpose of void in c?

619


Create a simple code fragment that will swap the values of two variables num1 and num2.

810


Explain the difference between malloc() and calloc() in c?

576


What are qualifiers in c?

572