Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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 about the functions strcat() and strcmp()?

1095


Which is better oop or procedural?

1133


write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...

1998


How can I do graphics in c?

1073


What is the ANSI C Standard?

1329


How do you search data in a data file using random access method?

1360


Write a C++ program to generate 10 integer numbers between - 1000 and 1000, then store the summation of the odd positive numbers in variable call it sum_pos, then find the maximum digit in this variable regardless of its digits length.

2059


What is the code for 3 questions and answer check in VisualBasic.Net?

2209


How can I trap or ignore keyboard interrupts like control-c?

1117


How can a program be made to print the line number where an error occurs?

1134


Write a program to print fibonacci series without using recursion?

1219


How do I determine whether a character is numeric, alphabetic, and so on?

1185


difference between Low, Middle, High Level languages in c ?

2142


Not all reserved words are written in lowercase. TRUE or FALSE?

1277


the 'sizeof' operator reported a larger size than the calculated size for a structure type. What could be the reason?

1042