c說話 字符串轉年夜寫的簡略實例。本站提示廣大學習愛好者:(c說話 字符串轉年夜寫的簡略實例)文章只能為提供參考,不一定能成為您想要的結果。以下是c說話 字符串轉年夜寫的簡略實例正文
#include <string.h>
#include <stdio.h>
#include <ctype.h>
#include <stdlib.h>
int main(void)
{
int length, i;
char string[20]= "this is a string";
length = strlen(string);
for (i=0; i<length; i++)
{
string[i] = toupper(string[i]);
}
printf("%s\n",string);
system("pause");
return 0;
}