|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
- // 1.cpp : Defines the entry point for the console application.
- //
- #include "stdafx.h"
- #include "stdio.h"
- #define NAME1 wo
- #define NAME2 ttang
- int main()
- {
- char NAME1,NAME2;
- printf("Hello World!\n");
- printf("%slove%s",NAME1,NAME2);
- return 0;
- }
复制代码
- sh-4.4$ cat main.c
- // 1.cpp : Defines the entry point for the console application.
- //
- //#include "stdafx.h"
- //#include "stdio.h"
- #define NAME1 wo
- #define NAME2 ttang
- int main()
- {
- char NAME1,NAME2;
- printf("Hello World!\n");
- printf("%slove%s",NAME1,NAME2);
- return 0;
- }
- sh-4.4$ gcc -E main.c
- # 1 "main.c"
- # 1 "<built-in>"
- # 1 "<command-line>"
- # 1 "main.c"
- int main()
- {
- char wo,ttang;
- printf("Hello World!\n");
- printf("%slove%s",wo,ttang);
- return 0;
- }
- sh-4.4$
复制代码
|
|