aosedo2664
码龄9年
求更新 关注
提问 私信
  • 博客:2,411
    2,411
    总访问量
  • 暂无
    原创
  • 0
    粉丝
  • 0
    关注
加入CSDN时间: 2017-03-01
查看详细资料
个人成就
  • 获得0次点赞
  • 内容获得0次评论
  • 获得5次收藏
  • 博客总排名1,307,682名
  • 原力等级
    原力等级
    0
    原力分
    0
    本月获得
    0
创作历程
  • 7篇
    2019年
成就勋章

TA关注的专栏 0

TA关注的收藏夹 0

TA关注的社区 0

TA参与的活动 0

创作活动更多

「谁说嵌入式只是调包和焊板子?」—— 2026嵌入式全栈技术征锋令

谁说嵌入式只会“Ctrl+C 调包”和“拿电烙铁焊板子”?2026嵌入式全栈技术征锋令正式启幕! 本次活动专为硬核硬件/软件开发者打造,无论你是刚玩转裸机外设的萌新,还是精通RTOS调度、死磕底层驱动的行业老手,亦或是执掌系统架构的大神,这里都是你证明实力的舞台! 拒绝表面功夫,每一行代码,都有撬动硬件的力量!晒出你的硬核工程实战,为嵌入式开发者的全栈硬实力正名!

211人参与 去参加
  • 最近
  • 文章
  • 专栏
  • 代码仓
  • 资源
  • 收藏
  • 关注/订阅/互动
更多
  • 最近

  • 文章

  • 专栏

  • 代码仓

  • 资源

  • 收藏

  • 关注/订阅/互动

  • 社区

  • 帖子

  • 问答

  • 课程

  • 视频

搜索 取消

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.21 ·
208 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

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.21 ·
458 阅读 ·
0 点赞 ·
0 评论 ·
3 收藏

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

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.21 ·
264 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

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/1pJwQ6Sj2、开始安装(建议大家新建一个文件夹),然后将文件复制到新建的文件夹中到所建文件夹目录输入命令: sudo tar...
转载
博文更新于 2019.09.21 ·
232 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

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.21 ·
750 阅读 ·
0 点赞 ·
0 评论 ·
1 收藏

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.21 ·
147 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

顺序表的创建与功能实现

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.21 ·
336 阅读 ·
0 点赞 ·
0 评论 ·
1 收藏