带函数的字符串到char

时间:2015-11-28 15:45:12

标签: c string char

我想从键盘上获取一个字符串,例如" abcde" ,然后将其插入char中,例如b为char,但没有函数,如atoi(a)表示整数。

#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;
}

1 个答案:

答案 0 :(得分:1)

您无法将字符串插入到char中。但是,您可以将字符串转换为字符数组。如果您正在寻找此信息,请参阅this answer