#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 / boopathi
0,1,2,o,o
| Is This Answer Correct ? | 2 Yes | 9 No |
Post New Answer View All Answers
what is the difference between north western polytechnique university and your applied colleges?? please give ur answers for this. :)
Describe dynamic data structure in c programming language?
What does do in c?
how to execute a program using if else condition and the output should enter number and the number is odd only...
List some applications of c programming language?
What should malloc(0) do?
What are conditional operators in C?
How to establish connection with oracle database software from c language?
What is the difference between volatile and const volatile?
Can we change the value of static variable in c?
If the size of int data type is two bytes, what is the range of signed int data type?
How can I check whether a file exists? I want to warn the user if a requested input file is missing.
What are variables c?
what is the diffrenet bettwen HTTP and internet protocol
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above