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 / jane
00131
| Is This Answer Correct ? | 13 Yes | 3 No |
Post New Answer View All Answers
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
Calculate 1*2*3*____*n using recursive function??
What is use of bit field?
Write the syntax and purpose of a switch statement in C.
Are the variables argc and argv are always local to main?
When reallocating memory if any other pointers point into the same piece of memory do you have to readjust these other pointers or do they get readjusted automatically?
How can type-insensitive macros be created?
Explain how can I manipulate strings of multibyte characters?
What are unions in c?
What does c value mean?
What is enumerated data type in c?
What does c mean before a date?
shorting algorithmS
Write a program to generate a pulse width frequency of your choise,which can be variable by using the digital port of your processor
When is a “switch” statement preferable over an “if” statement?