10/05/08 00:31:11 発信元:43.244.33.97
【依頼に関してのコメントなど】 長いので2レスですがお願いします。
【板名】 プログラム
【スレ名】 C言語なら俺に聞け(入門編)Part 63
【スレのURL】 スレリンク(tech板)
【メール欄】sage
【本文】
質問します。
#include <stdio.h>
#include <stdlib.h>
char *input(void){
int i; char aaa[8]; int count =0; char *bb="";
printf("番号入力する");
scanf("%07s",aaa);
fflush(stdin);
while (aaa[count]){
count++;
}
for (i=0;i<count;i++){
*(bb+i)=aaa[i];
}
return(bb);
}