#include <stdio.h> int main() { int n = 5; if (n & (n = 6)) printf("True %d\n", n); else printf("False %d\n", n); }
True 6
Previous Question Next Question
Your comments will be displayed only after manual approval.