标签: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