标签:success printf int 信息 引号 mic com 图片 image
#include <stdio.h> #include <stdlib.h> int main() { char wenwa[] = "程劲小盆友在做什么"; int _len = 0; while (wenwa[_len]) { printf("%c", wenwa[_len]); _len++; } printf("\n"); system("pause"); return EXIT_SUCCESS; }
看到while的循环条件,不禁让人叹为观止,这他妈的什么操作,详解如下:
标签:success printf int 信息 引号 mic com 图片 image
原文地址:https://www.cnblogs.com/saintdingspage/p/10348160.html