C
文章平均质量分 80
三余_1986
PostgreSQL DBA
展开
-
QT-Windows环境搭建及连接PostgreSQL测试
文章目录win10下安装QT4.8.5编译环境说明目录规划安装过程编译PostgreSQL Driver测试程序-QT Creater测试程序-命令行win10下安装QT4.8.5编译环境说明安装32位QT4.8.5,参考了多个网上的说明目录规划所有相关的程序都放到D盘的Qt目录下安装过程安装MinGW-gcc440_1.zip 解压后放到 D:\Qt安装qt-win-opensource-4.8.5-mingw.exe安装qt-creator-opensource-windows-x原创 2021-01-11 17:23:17 · 935 阅读 · 0 评论 -
C指针使用注意事项
1. 强制转换问题:强制转换后赋值可能会导致踩内存void getAddress(unsigned long * address){ *address = 0L;}void main(){ unsigned int address; getAddress(unsigned long* address); //会踩高四字内存}原创 2014-12-17 22:49:00 · 386 阅读 · 0 评论 -
C语言基础知识点整理
编译预处理命令行参数转义字符变量字符串结构体共用体枚举类型函数调用指针指向结构体的指针文件操作原创 2015-01-02 21:49:47 · 804 阅读 · 0 评论 -
system函数返回值测试分析
man system可以看到如下返回值说明RETURN VALUE The value returned is -1 on error (e.g. fork(2) failed), and the return status of the command otherwise. This latter return status is in the for原创 2014-12-25 22:31:22 · 1479 阅读 · 0 评论