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()
{
printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3));
}
wat is the o/p and how?

Answer Posted / manik

1 2 4

Is This Answer Correct ?    9 Yes 20 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is it valid to address one element beyond the end of an array?

1230


What is a macro, and explain how do you use it?

1128


What do you mean by scope of a variable in c?

1059


What are the types of functions in c?

1040


What does main () mean in c?

1148


the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters

2355


How can type-insensitive macros be created?

1220


Explain what is the use of a semicolon (;) at the end of every program statement?

1262


What is the use of sizeof?

1068


I have seen function declarations that look like this

1098


What is a union?

1093


What is a char in c?

1042


#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }

1111


Is c language still used?

1045


What does sizeof int return?

1137