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 / nisha
-1 -1 0 2 1
| Is This Answer Correct ? | 3 Yes | 10 No |
Post New Answer View All Answers
What are the different data types in C?
what is the c source code for the below output? 5555555555 4444 4444 333 333 22 22 1 1 22 22 333 333 4444 4444 5555555555
What is #include cctype?
What are shell structures used for?
By using C language input a date into it and if it is right?
What is the difference between test design and test case design?
What is pre-emptive data structure and explain it with example?
What is ctrl c called?
What is non linear data structure in c?
What are c header files?
What is structure padding in c?
Can you please explain the scope of static variables?
Discuss the function of conditional operator, size of operator and comma operator with examples.
What is adt in c programming?
Why c is called top down?