码迷,mamicode.com
首页 > 其他好文 > 详细

补充作业

时间:2017-03-31 18:05:14      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:style   img   class   src   pre   int   printf   include   void   

技术分享

#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输出一遍

补充作业

标签:style   img   class   src   pre   int   printf   include   void   

原文地址:http://www.cnblogs.com/tangsongz/p/6652611.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!