(long)123 为什么不能用作C语言常量
(long)123 为什么不能用作C语言常量
日期:2015-09-19 23:31:26 人气:1
可以啊!请看:
//#include "stdafx.h"//If the vc++6.0, with this line.#include "stdio.h"int main(void){ long x=(long)123; printf("%ld\n",x); return 0;}
(long)123 为什么不能用作C语言常量