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...

what is the output of the following program?
main()
{
int i=-1,j=-1,k=0,l=2,m;
m=i++&&j++&&k++||l++;
printf("%d %d %d %d %d",i,j,k,l,m);
}

Answer Posted / dally

0 0 0 3 1

Is This Answer Correct ?    1 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the purpose of sprintf() function?

1121


Explain the use of bit fieild.

1137


Is Exception handling possible in c language?

2047


Differentiate between null and void pointers.

1166


Explain how can you tell whether a program was compiled using c versus c++?

1101


Compare array data type to pointer data type

1021


Write a code to determine the total number of stops an elevator would take to serve N number of people.

1257


Can we access the array using a pointer in c language?

1048


What is the difference between union and anonymous union?

1302


Can we initialize extern variable in c?

1135


if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above

1161


Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?

1088


Define Spanning-Tree Protocol (STP)

1129


What is the best way to comment out a section of code that contains comments?

1338


How can I check whether a file exists? I want to warn the user if a requested input file is missing.

1144