C语言迷惑行为大赏

开发 后端
为什么不会输出公众号呢?原因在于标准输入默认是行缓冲,而标准错误是无缓冲。这在《那些奇奇怪怪的缓冲问题》中已经有解释了。

代码0:

  1. #include<stdio.h> 
  2. int main(void) 
  3.     int c = 5
  4.     switch(c) 
  5.     { 
  6.         case 0 ... 10: 
  7.             printf("0-->10\n"); 
  8.             break; 
  9.         case 11 ... 20: 
  10.             printf("11-->20\n"); 
  11.             break; 
  12.         default: 
  13.             printf("other\n"); 
  14.     } 
  15.     return 0; 

输出结果:

  1. 0-->10 

以上特性被常见编译器支持,但是标准中并未提到。

代码1

  1. #include<stdio.h> 
  2. int main(void) 
  3.     printf("%m\n"); 
  4.     return 0; 

输出结果:

  1. Success 

等价于:

  1. printf("%s\n",stderr(errno)); 

由于你的代码前面并没有执行出错设置errno,因此errno会是0,而对应的描述信息就是Success。

代码2

  1. #include<stdio.h> 
  2. int main(void) 
  3.     int i = 10
  4.     printf("%zu\n",sizeof(i++)); 
  5.     printf("%zu\n",sizeof(++i)); 
  6.     printf("%d\n",i); 
  7.     return 0; 

输出结果:

  1. 10 

sizeof实际作用的对象是类型。sizeof中的表达式本身并不会被执行。

代码3

  1. #include <stdio.h> 
  2. #include <unistd.h> 
  3. int main(void)   
  4.     while(1) 
  5.     { 
  6.         fprintf(stdout,"公众号"); 
  7.         fprintf(stderr,"编程珠玑"); 
  8.         sleep(10); 
  9.     } 
  10.     return 0; 

输出结果:

  1. 编程珠玑编程珠玑编程珠玑 

为什么不会输出公众号呢?原因在于标准输入默认是行缓冲,而标准错误是无缓冲。这在《那些奇奇怪怪的缓冲问题》中已经有解释了。

代码4

  1. #include <stdio.h> 
  2. int main(void)   
  3.     int a = 10
  4.     switch(a) 
  5.     { 
  6.         int b = 20
  7.         case 10: 
  8.             printf("%d\n",a + b); 
  9.             break; 
  10.         default: 
  11.             printf("%d\n",a + b); 
  12.             break; 
  13.     } 
  14.     return 0; 

输出结果:

  1. 10 

switch中的int b = 20,并不会被执行,你编译时就会发现有警告。

代码4

  1. #include <stdio.h> 
  2. int main(void)   
  3.     printf("%c\n",4["hello 公众号编程珠玑"]); 
  4.     return 0; 

输出结果:

等价于:

  1. char *str = "hello 公众号编程珠玑"
  2. printf("%c\n",str[4]); 

代码5

  1. //来源:公众号编程珠玑 
  2. //https://www.yanbinghu.com 
  3. #include<stdio.h> 
  4. int main(void) 
  5.     char arr[] = {'h','e','l','l','o'}; 
  6.     printf("%s\n",arr);//灾难!,可能会崩溃 
  7.     return 0; 

代码6

没啥用,还会core dump的超短代码,可以编译运行:

  1. main=0

代码7

  1. #include<stdio.h> 
  2. int main(void) 
  3.     int arr[] = {5,4,3,2,1}; 
  4.     for(int i = -1; i < sizeof(arr)/sizeof(int) - 1; i++) 
  5.     { 
  6.         printf("%d\n",arr[i+1]); 
  7.     } 
  8.     printf("end\n"); 
  9.     return 0; 

输出结果:

  1. end 

原因也很简单,sizeof(arr)/sizeof(int)的结果是unsigend, int类型的i 和unsigned比较,被转换为一个很大的unsigned数,所以for循环的条件不满足。

代码8

  1. #include<stdio.h> 
  2. test() 
  3.     long b = 12345678987654321
  4.     return b; 
  5. int main(void) 
  6.     long a = test(); 
  7.     printf("%ld\n",a); 
  8.     return 0; 

输出结果:

  1. 1653732529 

代码9

  1. #include<stdio.h> 
  2. int main(void) 
  3.     float a = 3
  4.     int b = 2
  5.     printf("%d\n",a/2); 
  6.     return 0; 

输出结果:

  1. 1199094392 

原因:浮点数在计算机中按照IEEE754标准存储

 

责任编辑:赵宁宁 来源: 编程珠玑
相关推荐

2024-06-07 08:41:19

2023-06-01 07:48:03

Solidjsx​​React​

2013-12-12 14:04:28

C编程语言

2020-05-28 08:34:38

疫情人工智能AI

2009-09-03 10:26:07

C#修改DataRea

2011-06-20 14:42:45

2022-04-25 21:50:09

前端JS面试题

2011-07-05 16:57:53

C语言

2011-07-05 17:07:14

C语言

2010-01-15 17:38:37

C++语言

2011-12-07 09:44:42

云计算李开复

2011-12-12 13:22:51

CocoaObjective-C

2010-01-14 10:34:02

C++语言

2012-01-16 08:51:28

PaaS云计算

2021-04-21 08:09:50

iOSApp设计iPhone

2013-12-19 09:56:46

开源Simon Phipp

2011-03-25 15:15:29

2009-08-03 16:28:53

Java语言与C#语言

2011-10-24 09:42:00

C语言

2022-01-28 14:54:21

staticC语言编译器
点赞
收藏

51CTO技术栈公众号