- 博客(5)
- 资源 (2)
- 收藏
- 关注
原创 二维指针与二维数组的使用
二维指针的直接初始化 int p1[3] = {3,4,3}; int p2[3] = {1,1,4}; int *p3[] = {p1, p2}; int **p4= p3; 使用malloc为二维指针初始化 int n = 5; int m = 6; int **p = (int **)malloc(sizeof(int *) * n); for (int i = 0; i < n; i++) { p[i] = (int *)malloc(sizeof(int) * m);
2020-11-05 10:53:07 182
原创 Makefile指定目标文件和可执行文件存放的目录
INC = -I../include LIB = -L../lib -lsqlite3 CFLAGS = -lgcc -pthread -ldl DIR_OBJS = ../obj DIR_BIN = ../bin dirs := $(DIR_OBJS) $(DIR_BIN) bin = server src = $(wildcard *.c) obj = $(patsubst %.c,%...
2019-05-22 11:35:36 4368 1
原创 完整成功-交叉编译mplayer,支持流媒体live555,总结出现错误和解决方法。
一、准备工作: MPlayer-1.0rc1.tar.bz2 #MPlayer source code 下载地址:MPlayer-1.0rc1.tar.bz2 libmad-0.15.1b.tar.gz #解码库 下载地址:libmad-0.15.1b.tar.gz live.2011.12.23.tar.gz #live库的支持,流媒体功能必要 下载地址:li...
2019-04-19 17:02:02 2641
原创 ./qmake: error while loading shared libraries: libstdc++.so.6: cannot open shared object file: No su
执行./qmake -v时,出现以下错误 root@olieg:/opt/Qt-5.5.0-gec2015.11/bin# ./qmake -v ./qmake: error while loading shared libraries: libstdc++.so.6: cannot open shared object file: No such file or directory 这是64...
2019-04-15 08:46:28 1292
转载 Qt编译遇到问题和解决方法
Linux下QT安装教程:https://blog.csdn.net/xqhrs232/article/details/63251450 虚拟中安装ubuntu及搭建Qt开发环境:https://blog.csdn.net/aristolto/article/details/81385067 以下博文来自:https://blog.csdn.net/makuiyu/article/detail...
2019-03-28 17:48:56 1805
C/C++语言函数 中文参考手册chm
2019-03-28
LinuxC函数-中文使用手册chm
2019-03-28
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人