0
点赞
收藏
分享

微信扫一扫

转义字符的使用

张宏涛心理 2022-04-21 阅读 57
c语言c++

//1.7 转义字符的使用

 

#include<stdio.h>

int main()

 

{

 

  int a,b,c;

 

  a=5; b=6; c=7;

 

  printf(" ab c\tde\rf\n");

 

  printf("hijk\tL\bM\n");

  return 0;

 

}

举报

相关推荐

0 条评论