Вот код:
#include<stdio.h> #define sqr(x) x*x void main() { printf("\n%d",sqr(9)); printf("\n%d",sqr(5+4)); }
Результат: 81 29