What will be the output of this program ?
#define square(x) x*x main() { int z; z = 25/square(5); printf("%d",z); }