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 / praveen
0 0 1 3 1
correct me if im wrong
| Is This Answer Correct ? | 22 Yes | 0 No |
Post New Answer View All Answers
Array is an lvalue or not?
Why do we need functions in c?
What is the main difference between calloc () and malloc ()?
Explain the properties of union.
a linearly ordered set of data elements that have the same structure and whose order is preserved in storage by using sequential allocation a) circular b) ordinary c) array d) linear list
What is the purpose of scanf() and printf() functions?
Wt are the Buses in C Language
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???
Explain the concept and use of type void.
What is the use of header?
How is a structure member accessed?
How do you use a pointer to a function?
What is difference between %d and %i in c?
What is a wrapper function in c?
Do character constants represent numerical values?