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 / tamil selvam

i value is 2.
j value is 7.

Is This Answer Correct ?    19 Yes 9 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is struct node in c?

1044


using only #include and #include Write a program in C that will read an input from the user and print it back to the user if it is a palindrome. The string ends when it encounters a whitespace. The input string is at most 30 characters. Assume the string has no spaces and distinguish between and lowercase. So madam is a palindrome, but MadAm is not a palindrome. Use scanf and %s to read the string. Sample Test: Enter a string: madam madam is a palindrome. Enter a string: 09023 09023 is not a palindrome.

1793


Does c have circular shift operators?

1206


why return type of main is not necessary in linux

2071


What is main () in c language?

1101


Stimulate calculator using Switch-case-default statement for two numbers

2938


Explain how do you use a pointer to a function?

1073


What is the purpose of scanf() and printf() functions?

1203


What is meant by initialization and how we initialize a variable?

1019


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

1095


Is r written in c?

1136


How can I make it pause before closing the program output window?

1008


When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd

1024


What is an example of structure?

998


What is a list in c?

1000