• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
wjshan0808

Learn from yesterday, Live for today, For a better tomorrow.
 ————wjshan0808

博客园    首页    新随笔    联系   管理    订阅  订阅
2013年9月17日
Write a program to copy its input to its output, replacing each tab by \t, each backspace by \b, and each backslash by \\. This makes tabs and backspa
摘要: #include #define DBS '\\'void main(){ int c; while((c=getchar())!=EOF) { if(c=='\t') { putchar(DBS); putchar('t'); } else if(c==' ') { putchar(DBS); putchar('b'); } else if(c=='\\') { ... 阅读全文
posted @ 2013-09-17 18:57 wjshan0808 阅读(399) 评论(0) 推荐(0)
Write a program to copy its input to its output, replacing each string of one or more blanks by a single blank.
摘要: #include void main(){ int c,c_BCN; while((c=getchar())!=EOF) { if(c!=' ') c_BCN=0; if(c==' ') ++c_BCN; if(c_BCN<=1) putchar(c); } printf("\n%d\n",c);}df ff f f fff d fg fggdf ff f f fff d fg fgg 阅读全文
posted @ 2013-09-17 17:21 wjshan0808 阅读(584) 评论(0) 推荐(0)
C program Language 'EOF' and 'getchar()'
摘要: #include void main(){ int c; c=getchar(); while(c!=EOF) { putchar(c); c=getchar(); }}getchar() returns a distinctive value when there is no more input, a value that cannot be confused with any real character. This value is calledEOF, for ``end of file''.Q: The ty... 阅读全文
posted @ 2013-09-17 15:20 wjshan0808 阅读(365) 评论(0) 推荐(0)
linux下 解释 终端命令 ls -al或者ls -li 输出的信息
摘要: $ ls -al drwxr-xr-x. 6 wjshan0808 wjshan0808 4096 Sep 11 21:51 .cache$ ls -liinode值 文件类型权限 连接计数 文件拥有者 文件群组 大小 修改日期 名称12976146 drwxr-xr-x. 2 wjshan0808 wjshan0808 4096 Sep 16 12:37 Desktop注:连接计数 - 2 = 本目录直接包含的子目录和文件的总和 阅读全文
posted @ 2013-09-17 00:49 wjshan0808 阅读(3910) 评论(0) 推荐(0)
Linux 文件类型 ,文件权限
摘要: 第一个字符段:文件类型。第二个组字符段又分为三段(每三个字符为一段不足用‘-’):文件属性。1. drwxrwxrwx 2. -rwxr-xr-x第一字符段: 第二字符组段依次为:- :普通文件 1.文件拥有者 2.文件所属的组群成员 3.其他用户d :目录 r:可读 w:可写 x:可执行l :链接b:块设备文件c:字符设备文件、p:管道文件s:套接文件 阅读全文
posted @ 2013-09-17 00:05 wjshan0808 阅读(200) 评论(0) 推荐(0)
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3