#include <stdio.h> #define calc(p, q) p / q + p int main() { int a = -10, b = 5; printf("%d\n", calc(a + b, 5)); return 0; }
-14
Previous Question Next Question
Your comments will be displayed only after manual approval.