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
GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..
Why does the call char scanf work?
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
Why structure is used in c?
What is the difference between malloc() and calloc() function in c language?
Is flag a keyword in c?
please explain every phase in the "SDLC" in the dotnet.
Why does everyone say not to use gets?
writ a program to compare using strcmp VIVA and viva with its output.
A collection of data with a given structure for excepting storing and providing on demand data for multiple users a) linked list b) datastructer c) database d) preprocessor
Explain what header files do I need in order to define the standard library functions I use?
What are variables c?
What is string function in c?
I need a help with a program: Write a C program that uses data input in determining the whole of points A and a whole of circles B. Find two points in A so that the line which passes through them, cut through the maximum number of circles.