#include <stdio.h> int main() { int p1 = 3, p2 = 2; int p3 = p1 /= p2 %= 2; printf("%d\n", p3); }
Floating point exception
Previous Question Next Question
Your comments will be displayed only after manual approval.