6th c++ Problem
have a look of this code
ie i want b=4
#include<iostream.h> #define square(x)x*x void main() { int b,a=4; b=64/square(a); cout<<b; }Tell me the output...?and if it gives wrong output then give me correct output?
ie i want b=4
0