C语言基础_宏定义

#include <stdio.h>
#include <stdlib.h>
#define 开始吧    main
#define 空既是空    void
#define 执行一下吧    system
#define 打印    printf

空既是空 开始吧()
{
    打印("锄禾日当午,学C真他妈苦");
    system("notepad");
    system("pause");
}
原文地址:https://www.cnblogs.com/zhuyaguang/p/4812311.html