-3
我想從鍵盤得到一個字符串,如「abcde」,然後將其插入一個字符,例如b是char,但沒有函數,如atoi(a)for整數。字符串與函數字符
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main(){
char a[6];
char b;
scanf("%s",a);
printf("%s",a);
printf("\n");
b=a;
printf("%c",b);
return 0;
}
heh? whaddya的意思是插入一個字符串到char? –
'b = a [0]'而不是'b = a' – BLUEPIXY
字符串「abcde」不是數字。你能澄清你的意思嗎? – this