#include<stdio.h>
int main()
{ int i=0,j=1,k=2,m,n=0;
m=i++&&j++&&k++||n++;
printf("%d,%d,%d,%d,%d",i,j,k,m,n);
}
Answer Posted / abc
1 1 2 0 0
| Is This Answer Correct ? | 2 Yes | 7 No |
Post New Answer View All Answers
Why functions are used in c?
What are the salient features of c languages?
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
praagnovation
Explain how do you print an address?
How can you increase the allowable number of simultaneously open files?
Differentiate between calloc and malloc.
In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)
Tell me what are bitwise shift operators?
What is the importance of c in your views?
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 is the purpose of & in scanf?
what do you mean by enumeration constant?
Why is void main used?
How many types of arrays are there in c?