#include <stdio.h> #define CUBE(x) (x * x * x) int main() { printf("%d", CUBE(4+5)); return 0; }
c c-preprocessor
c ×1
c-preprocessor ×1