Y SHivakanth wrote:
> By the way anybody know what the out put of the following program will be.
> #include <stdio.h>
> #define print(a){printf("%d",a*a)};
> main()
> {
> print (a);
> }
> Thanks
> Regards
> Shivakanth
None at all, the program does not compile (missing definition of symbol
'a').
Yours,
David.
|