What would be the output of the following program?
main()
{
int i = -3, j =2, k =0, m ;
m = ++j && ++i || ++k ;
Printf ( "\n%d%d%d%d", i , j , k , m );
}5
1110 5b5cc7dde4d2b419777515ee
Q: What would be the output of the following program? main() { int i = -3, j =2, k =0, m ; m = ++j && ++i || ++k ; Printf ( "\n%d%d%d%d", i , j , k , m ); }
- Show Answer
- Workspace
- Discuss