int 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 / devika
2,2,1,3,1
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
Do variables need to be initialized?
Explain what is the benefit of using #define to declare a constant?
How does sizeof know array size?
What is "Duff's Device"?
Is c compiled or interpreted?
Write a program to check prime number in c programming?
When should volatile modifier be used?
What are the loops in c?
Is stack a keyword in c?
Where static variables are stored in memory in c?
Why does everyone say not to use gets?
How will you divide two numbers in a MACRO?
Difference between Function to pointer and pointer to function
What are the benefits of organizational structure?
What are linked lists in c?