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
Explain what math functions are available for integers? For floating point?
What is c programing language?
What is multidimensional arrays
Why dont c comments nest?
Explain void pointer?
What is huge pointer in c?
How can I make sure that my program is the only one accessing a file?
What do you understand by normalization of pointers?
Write a c program to demonstrate character and string constants?
Can we assign integer value to char in c?
Where static variables are stored in memory in c?
What is array of structure in c programming?
what is event driven software and what is procedural driven software?
Whats s or c mean?
What are the advantages of using linked list for tree construction?