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=0,j=1,k=2,m,n=0;
m=i++&&j++&&k++||n++;
printf("%d,%d,%d,%d,%d",i,j,k,m,n);
}

Answer Posted / aravind

0,1,2,0,0

Is This Answer Correct ?    11 Yes 11 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is a protocol in c?

1058


How do we declare variables in c?

1119


int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer

1098


What are qualifiers and modifiers c?

1067


I heard that you have to include stdio.h before calling printf. Why?

1117


What are the different types of control structures in programming?

1183


How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?

16925


There seem to be a few missing operators ..

1097


When is the “void” keyword used in a function?

1586


What is mean by data types in c?

1074


What is new line escape sequence?

1402


What is the right type to use for boolean values in c?

1090


Explain what is operator promotion?

1153


What are qualifiers in c?

1091


What does %d do?

1360