C/C++ 字符ASCII码加1输出 - hello world 变形
#include <stdio.h>
int main() { char str[] = 'hello world'; int i = 0; while (str[i] != '\0') { printf('%c', str[i] + 1); i++; } printf('\n'); return 0; }
原文地址: http://www.cveoy.top/t/topic/dphu 著作权归作者所有。请勿转载和采集!