#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 c is called free form language?
the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none
How do you sort filenames in a directory?
What is mean by data types in c?
What is the difference between #include
Explain what is meant by high-order and low-order bytes?
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
What are header files why are they important?
What does a derived class inherit from a base class a) Only the Public members of the base class b) Only the Protected members of the base class c) Both the Public and the Protected members of the base class d) .c file
What is the difference between int main and void main in c?
any limit on the number of functions that might be present in a C program a) max 35 functions b) max 50 functions c) no limit d) none of the above
Why header files are used?
When should a far pointer be used?
What is the scope of local variable in c?
What is the use of printf() and scanf() functions?