Dear(s) I have the following code of C that give me the answer = 11 correct but I cannot pick the point over here. Kindly explain if any have the key.
include
using namespace std;
int main()
{
#define square(x) x*x
cout<<square(3+2);
return 0;
}