#include <stdio.h> int main() { int p = 12, q = 6, r = 4; q != !p; r = !!p; printf("%d\t%d", q, r); }
6 1
Previous Question Next Question
Your comments will be displayed only after manual approval.