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
using only #include
What is the difference between memcpy and memmove?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
What does char * * argv mean in c?
What is c language in simple words?
Why is c known as a mother language?
Where is c used?
What is the difference between array and linked list in c?
How can I ensure that integer arithmetic doesnt overflow?
How pointers are declared?
Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon
Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.
List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.
plz let me know how to become a telecom protocol tester. thank you.
Process by which one bit pattern in to another by bit wise operation is?