#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 / saravanan
0,1,2,0
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Why doesn't C support function overloading?
What is a macro, and explain how do you use it?
Which are low level languages?
What is abstract data structure in c?
Explain why C language is procedural?
What are the advantages and disadvantages of a heap?
What are the basic data types associated with c?
What is the value of c?
What are the application of c?
What is the purpose of void pointer?
program for reversing a selected line word by word when multiple lines are given without using strrev
What are the different types of C instructions?
Calculate the weighted average of a list of n numbers using the formula xavg = f1x1+f2x2+ ….+ fnxn where the f’s are fractional weighting factors, i.e., 0<=fi<1, and f1+f2+….+fn = 1
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34
Tell me about low level programming languages.