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 / saravanan

0,1,2,0

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Write a C program in Fibonacci series.

1088


Explain 'bit masking'?

1086


Which of the following operators is incorrect and why? ( >=, <=, <>, ==)

1162


Is struct oop?

1002


Explain what is a pragma?

1047


Differentiate call by value and call by reference?

960


why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???

1969


struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer

1296


Which function in C can be used to append a string to another string?

1217


What is wrong with this declaration?

1105


Is boolean a datatype in c?

1064


All technical questions

1987


What is hash table in c?

1019


Explain the ternary tree?

1024


the constant value in the case label is followed by a a) semicolon b) colon c) braces d) none of the above

1247