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

please give me answer with details
#include<stdio.h>
main()
{
int i=1;
i=(++i)*(++i)*(++i);
printf("%d",i);
getch();
}

Answer Posted / vaseem

++i * ++i * **i
->
2 3 4
now started this way
<-
4 * 4 * 4
=64

Is This Answer Correct ?    5 Yes 5 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the scope of static variables?

1264


Can you please explain the difference between syntax vs logical error?

1242


What is static function in c?

1170


How are portions of a program disabled in demo versions?

1349


What is mean by data types in c?

1076


Write a program to print factorial of given number without using recursion?

1050


What are static variables in c?

1136


What is the purpose of main( ) in c language?

1193


Discuss the function of conditional operator, size of operator and comma operator with examples.

1216


Explain the red-black trees?

1205


the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none

1115


What is getch() function?

1109


Is sizeof a keyword in c?

1022


What is the difference between new and malloc functions?

1187


To print the pattern 1 2 3 4 5 10 17 18 19 6 15 24 25 20 7 14 23 22 21 8 13 12 11 10 9

2694