#include <stdio.h> void fun(); int main() { #define max 15 fun(); return 0; } void fun() { printf("%d\n", max * 15); }
225
Previous Question Next Question
Your comments will be displayed only after manual approval.