#include <stdio.h> int main() { int p1 = 7, p2 = 5, k; int p3; p3 = p2 = 3, k = p1 && p2; printf("%d\n", k); return 0; }
1
Previous Question Next Question
Your comments will be displayed only after manual approval.