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 / mayank kumar

i=5
j=11

Is This Answer Correct ?    22 Yes 10 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Write a program to swap two numbers without using a temporary variable?

1181


Why can’t we compare structures?

1325


How can I find out if there are characters available for reading?

1165


What are the 4 types of functions?

1110


Hai what is the different types of versions and their differences

1978


How do you define CONSTANT in C?

1367


What is the significance of an algorithm to C programming?

1096


Explain what is the difference between the expression '++a' and 'a++'?

1265


What are the types of type qualifiers in c?

1140


What is FIFO?

1840


Write a factorial program using C.

1122


what are the 10 different models of writing an addition program in C language?

1943


Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as “****”.

3229


Is anything faster than c?

1062


Explain the meaning of keyword 'extern' in a function declaration.

1210