自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

  • 博客(7)
  • 收藏
  • 关注

转载 Ubuntu下gcc安装及使用

Ubuntu下gcc安装及使用 sudo apt update报错 sudo apt update 命中:1http://packages.microsoft.com/repos/vscodestable InRelease 命中:2http://ppa.launchpad.net/elementary-os/stable/ubuntubionic InR...

2019-09-16 19:11:00 177

转载 ubuntu14.0安装arm-linux-gcc交叉编译环境

ubuntu14.0安装arm-linux-gcc交叉编译环境 1、下载文件: 安装包:arm-linux-gcc-4.5.1-v6-vfp-20120301.tgz 下载地址http://pan.baidu.com/s/1pJwQ6Sj 2、开始安装(建议大家新建一个文件夹),然后将文件复制到新建的文件夹中 到所建文件夹目录 输入命令: sudo tar...

2019-09-16 19:10:00 210

转载 C语言-时间格式

#include <stdio.h> #include <time.h> int main () { time_t rawtime; //时间类型(time.h 定义) struct tm*timeinfo; //时间结构,time.h 定义如下: int tm_sec; int tm_min; ...

2019-09-16 18:58:00 735

转载 C语言-获取系统时间

1 #include<time.h> 2 #include<stdio.h> 3 int main() 4 { 5 time_t timep; 6 struct tm *p; 7 time (&timep); 8 p=gmtime(&timep); 9 printf("%...

2019-09-16 18:53:00 135

转载 C++时钟-系统时间

1 # include <iostream> 2 # include <windows.h> 3 # include <time.h> 4 # include <iomanip> 5 # define BUF 255 6 7 using namespace std; 8 9 cla...

2019-09-16 18:50:00 435

转载 单链表的创建及增删改查功能的实现

1 #include<stdio.h> 2 #include<stdlib.h> 3 #include<math.h> 4 5 typedef int DataType; 6 typedef struct node{ //结点类型定义 7 DataType data; ...

2019-09-16 18:21:00 254

转载 顺序表的创建与功能实现

1 #include<iostream> 2 #include<stdio.h> 3 4 #define MAXSIZE 100 5 #define OVERFLOW -2 6 #define ERROR 0 7 #define OK 1 8 9 using namespace std; 10 ...

2019-09-16 18:19:00 316

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除