1
2
3
4
5
6
7
8
|
#include <stdio.h>
#define SOR(x) (x*x)
main()
{
int
a,b=3;
a=SOR(b+2);
printf
(
"%d"
,a);
}
|