使用最流行的转义序列

#include stdio.hint main(){printf(Column A\\tColumn B\\tColumn C);printf(\\nMy Computer\\s Beep Sounds Like This: \\a!\\n);

编程学习网为您整理以下代码实例,主要实现:使用最流行的转义序列,希望可以帮到各位朋友。

#include <stdio.h>
int main()
{

    printf("Column A\tColumn B\tColumn C");
    printf("\nMy Computer\'s Beep Sounds like This: \a!\n");
    printf("\"Letz\bs this is a test test test test \\ \\ ");
    printf("character \\\" she saID\n");

    return 0;
}

本文标题为:使用最流行的转义序列