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