字符串:字符串的输入输出

2020-11-02  本文已影响0人  爱生活_更爱挺自己

字符串赋值?

字符串输入输出

#include<stdio.h>

int main(void)
{
    char word[8];
    scanf("%7s", word);
    printf("%s##\n",word);
    
    return 0;
}

安全的输入

常见错误

空字符串

上一篇下一篇

猜你喜欢

热点阅读