标签:clu include code bsp pre 警告 style main span
/* 输出警报符\a和换行符\n */ #include <stdio.h> int main(void) { printf("你好。\n初次见面。\n"); printf("\a警告。\n\n"); printf("\a\a这次是第2次警告。\n"); return 0; }
输出
你好。
初次见面。
警告。
这次是第2次警告。
标签:clu include code bsp pre 警告 style main span
原文地址:https://www.cnblogs.com/sea-stream/p/11037517.html