补充作业
Posted 张曌洋
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了补充作业相关的知识,希望对你有一定的参考价值。
#include<stdio.h> int funstr(char str[]) {int i=0; str[0]=\'H\'; str[6]=\'W\'; while(str[i]!=\'\\0\') {printf("%c",str[i]); i++; } } int main() {char str[]="hello world"; printf("%s\\n",str); funstr(str); return 0; }
总结:定义一个字符串str,定义一个funstr函数,将小写转化为大写,用%c输出,最后再用%s输出一遍
以上是关于补充作业的主要内容,如果未能解决你的问题,请参考以下文章