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>
int main()
{
int i=2;
int j=++i + ++i + i++;
printf("%d\n",i);
printf("%d\n",j);
}

Answer Posted / gaurav

5
12

Is This Answer Correct ?    35 Yes 14 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is #line used for?

1072


Should I learn c before c++?

1298


Why do we use header files in c?

1125


What is const keyword in c?

1218


When is a “switch” statement preferable over an “if” statement?

1209


Tell us two differences between new () and malloc ()?

1275


Why is #define used?

1332


Explain 'bus error'?

1164


What is #define?

1190


What are the different types of objects used in c?

1081


What are the 4 types of programming language?

1192


What's a good way to check for "close enough" floating-point equality?

1255


Why #include is used in c language?

1103


What is the purpose of & in scanf?

1122


cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration

1153