#include <stdio.h> int main() { int n1 = 8, n2 = 4, n3 = 4; int n4; n4 = n2 + n3 == n1; printf("%d", n4); }
1
Previous Question Next Question
Your comments will be displayed only after manual approval.