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