トップ
新規
一覧
単語検索
最終更新
ヘルプ
ログイン
アールメカブ
Cでメモリを節約して文字列を読む
をテンプレートにして作成
開始行:
[[Programming]]
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
int main(){
char *buff;
int *a;
buff = (char*) malloc(100);
fgets(buff, 100, stdin);
a=(int*)malloc(strlen(buff)+1);
strcpy(a,buff);
printf("入力文字: %s\n",a);
free(buff);
free(a);
return 0;
}
gets()を使うと警告がうるさいので,fgets()を使っている.ge...
終了行:
[[Programming]]
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
int main(){
char *buff;
int *a;
buff = (char*) malloc(100);
fgets(buff, 100, stdin);
a=(int*)malloc(strlen(buff)+1);
strcpy(a,buff);
printf("入力文字: %s\n",a);
free(buff);
free(a);
return 0;
}
gets()を使うと警告がうるさいので,fgets()を使っている.ge...
ページ名: