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 / deepshree sinha

i=1,j=2,k=3,m=0,n=1

Is This Answer Correct ?    7 Yes 11 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the advantages of c preprocessor?

1318


A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers

1284


Does c have an equivalent to pascals with statement?

1068


How do I use strcmp?

1138


What is bubble sort in c?

1105


#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }

1108


Write a program to find factorial of a number using recursive function.

1182


What are the different data types in C?

1249


Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.

1400


What is switch in c?

1161


Do you know what are the properties of union in c?

1131


What is structure in c explain with example?

1217


Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?

1068


What is the difference between a string and an array?

1261


What is difference between structure and union?

1191