#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 / musa
1,2,3,1,1
| Is This Answer Correct ? | 2 Yes | 4 No |
Post New Answer View All Answers
How arrays can be passed to a user defined function
In a byte, what is the maximum decimal number that you can accommodate?
Explain what math functions are available for integers? For floating point?
What are c header files?
What is null pointer constant?
In C, What is the #line used for?
What are the salient features of c languages?
How do I create a directory? How do I remove a directory (and its contents)?
What is double pointer?
FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above
List the difference between a 'copy constructor' and a 'assignment operator' in C?
How can I remove the leading spaces from a string?
What is the use of typedef in c?
if the area was hit by a virus and so the decrease in the population because of death was x/3 and the migration from other places increased a population by 2x then annually it had so many ppl. find our the population in the starting.
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?