首页 > 后端开发 > C++ > 有关C编程的有趣事实

有关C编程的有趣事实

WBOY
发布: 2023-09-06 12:41:05
转载
1415 人浏览过

有关C编程的有趣事实

在这里我们将看到一些有关 C 编程的有趣事实。如下所示。

  • 有时某些 switch 语句的 case 标签可以放在 if-else 语句内。

示例
#include <stdio.h>
main() {
   int x = 2, y = 2;
   switch(x) {
      case 1:
         ;
         if (y==5) {
            case 2:
               printf("Hello World");
         }
         else case 3: {
            //case 3 block
         }
   }
}
登录后复制

输出

Hello World
登录后复制
  • 数组[index]可以写成index[array]。原因是数组元素是使用指针算术访问的。 array[5] 的值为 *(array + 5)。如果像 5[array] 这样的顺序相反,那么也和 *(5 + array) 一样。

示例

#include <stdio.h>
main() {
   int array[10] = {11, 22, 33, 44, 55, 66, 77, 88, 99, 110};
   printf("array[5]: %d</p><p>", array[5]);
   printf("5[array]: %d</p><p>", 5[array]);
}
登录后复制

输出

array[5]: 66
5[array]: 66
登录后复制
  • 我们可以使用 <: , :> 代替方括号 [,],使用 <%, %> 代替大括号 {,}。
  • ul>

    示例

    #include <stdio.h>
    main() <%
    int array<:10:> = <%11, 22, 33, 44, 55, 66, 77, 88, 99, 110%>;
    printf("array[5]: %d</p><p>", array<:5:>);
    %>
    登录后复制

    输出

    array[5]: 66
    登录后复制
    • 我们可以在一些奇怪的地方使用#include。这里让我们考虑文件 abc.txt 中包含“The Quick Brown Fox Jumps Over The Lazy Dog”这一行。如果我们在 printf 语句之后包含该文件,则可以打印该文件内容。

    示例

    #include <stdio.h>
    main() {
       printf
       #include "abc.txt" ;
    }
    登录后复制

    输出

    The Quick Brown Fox Jumps Over The Lazy Dog
    登录后复制
    • 我们可以在 scanf() 中使用 %*d 忽略输入。

    示例

    #include <stdio.h>
    main() {
       int x;
       printf("Enter two numbers: ");
          scanf("%*d%d", &x);
       printf("The first one is not taken, the x is: %d", x);
    
    }
    登录后复制

    输出

    Enter two numbers: 56 69
    The first one is not taken, the x is: 69
    登录后复制

    以上是有关C编程的有趣事实的详细内容。更多信息请关注PHP中文网其他相关文章!

相关标签:
来源:tutorialspoint.com
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板