C注意事项

2014-11-04:


-  C标准中main函数只有两种形态:

.. code:: c

    int main(void);
    int main(int argc, char *argv[]);

-  不可以通过指向字符串常量的指针修改字符串:
   很明显, 字符串常量, 不可以修改, 但是很多时候还是容易犯错误

.. code:: c

    #include <stdio.h>

    int main(void)
    {
      char *pstr = "hello, world";
      // *(pstr+2) = 'd'; 编译会报错!

      char str[] = "hello, world";
      str[3] = 'd'; // OK
      char *p_str = str;
      *(p_str + 3) = 'f'; // OK

      return (0);
    }

2014-12-01:
  • C语言中void类型怎么返回?使用\ return:

.. code:: c

void func(void)
{
  if (...) {
    return;
  }
  ...
}
  • C语言和面向对象思想并不冲突 ;) 这两者是可以在一起的

2014-12-14: ~~~~~~~~~~~

  • typedef, struct, do…while后切记要加分号;

更多文章
  • 服务器IP被ban学到的经验
  • socks5 协议详解
  • 开启HSTS(HTTP Strict Transport Security)
  • 从Chrome切换到Firefox
  • 网络乞讨之合并支付宝和微信的收款二维码
  • nomad简明教程
  • Linux下当笔记本合上盖子之后只使用扩展显示器
  • Ubuntu 18.04 dhcp更换新IP
  • Python中的新式类(new style class)和老式类(old style class)
  • Python Requests 简明教程
  • 密码技术简明教程(三):证书和TLS
  • 密码技术简明教程(二):散列、消息认证码和数字签名
  • SEO学习笔记
  • 密码技术简明教程(一):对称加密和非对称加密
  • Kubernetes 笔记