#include int a(int); int main() { int x = 2; x = a(x); printf("%d\n", x); return 0; } int a(int x) { x = x % 2; printf("%d\n",x); return x; }