#include <stdio.h> int main() { int t1 = 3, t2 = 5; int t3 = ~t1 & t2; printf("%d\n", t3); }
4
Previous Question Next Question
Your comments will be displayed only after manual approval.