为什么我不能在C中打印字符串点?

时间:2017-04-08 10:22:28

标签: c printf scanf point

为什么我运行代码而我刚刚遇到分段错误

#include <stdio.h>

int main(void){
    char *string = "hello,world";
    // printf("0x%p\n",string);
    printf("Command:");
    scanf("%s",string);
    printf("%s",string);
    // printf("0x%p\n",&(""));
    // printf("0x%p\n",string);
    return 0;
}

0 个答案:

没有答案