#include <stdio.h> int main() { int p = -2, q = 5, r = 2, s; s = ++p && ++q || ++r; printf("%d, %d, %d, %d\n", p, q, r, s); return 0; }
-1, 6, 2, 1
Previous Question Next Question
Your comments will be displayed only after manual approval.