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...

#include<stdio.h>
void main()
{
char *str;
long unsigned int add;
str="Hello C";
add=&str[0];
printf("%c",add);
}
What is the output?

Answer Posted / manish122

Error:- Non Portable Pointer Conversion.

Is This Answer Correct ?    5 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the different types of control structures?

1082


Is void a keyword in c?

1046


How does pointer work in c?

1191


Can we declare variable anywhere in c?

1031


What is a header file?

1127


How can I change their mode to binary?

1182


Difference between goto, long jmp() and setjmp()?

1228


What is spaghetti programming?

1195


For what purpose null pointer used?

1112


What are the restrictions of a modulus operator?

1163


Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.

2281


What is volatile keyword in c?

1085


Why doesn't C support function overloading?

2861


Why do we write return 0 in c?

1125


Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?

1255