240 发简信
IP属地:河北
  • assert简单用法

    assert宏的原型定义在< assert.h>中。 原型定义: void assert(int expression); assert的作用是...

  • void与void*(二)

    (三)void的使用 void关键字的使用规则: 1.如果函数没有返回值,那么应声明为void类型 在C语言中,凡不加返回值类型限...

  • void 与void *(一)

    (一)Void的使用规则: 1.函数没有返回值,函数类型声明为void; 2.如果函数没有参数,参数类型为void; ...