很简单的一个问 题,但是我却不会,求解答,谢谢!
// 1.cpp : Defines the entry point for the console application.//
#include "stdafx.h"
#define w 3
#define L w+4
int main(int argc, char* argv[])
{
int val;
val=L*L;
printf("%d\n",L*L);
printf("Hello World!\n");
return 0;
}
为什么L*L是19而不是49?