1 2 3 4 5 6 7 8
#include <stdio.h> void main() { int x = 0; int y = 0; x = y += 1; printf("%d", x); }