जॉइन Examsbookउत्तर :
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
प्र: 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 ); }
- उत्तर देखेंउत्तर छिपाएं
- Workspace
उत्तर :
व्याख्या :
-2 3 0 1

