c 語言 控制碼

source codecode

#include <stdio.h>

int main()
{
    char *test = "ABC\x41\n";
    printf("string : %s", test);

    return 0;
}

outputci

$ ABCA

source code 中的 "\x41",
表明 ascii 碼 0x41,也就是 "A"
也可寫 控制碼
\x1,也就是 SOHstring

相關文章
相關標籤/搜索