char str[5];int i;for(i=0;i<5;i++)scanf("%s",&str[i]);for(i=0;i<5;i++)printf("%d",str[i]);
#include #includevoid main(){ double f; char str[50]; scanf("%s",str); f=atof(str); printf("stirng=%s float=%f\n",str,f);}
没有数组的话%s读进来的东西放在哪里?