#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
Write a C program in Fibonacci series.
Explain 'bit masking'?
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
Is struct oop?
Explain what is a pragma?
Differentiate call by value and call by reference?
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
Which function in C can be used to append a string to another string?
What is wrong with this declaration?
Is boolean a datatype in c?
All technical questions
What is hash table in c?
Explain the ternary tree?
the constant value in the case label is followed by a a) semicolon b) colon c) braces d) none of the above