码迷,mamicode.com
首页 >  
搜索关键字:not-define    ( 25272个结果
实验六
实验任务一: #include<stdio.h> #include<stdlib.h> #include<string.h> #define N 3 // 运行程序输入测试时,可以把N改小一些输入测试 typedef struct student { int id; /*学生学号 */ char n ...
分类:其他好文   时间:2021-06-08 23:29:04    阅读次数:0
camke(6)配置pangolin 4slam划轨迹和相机位置姿态
CMakeLists.txt # cmake needs this line cmake_minimum_required(VERSION 3.1) # Define project name project(Pangolin_project) #添加Pangolin画图依赖库 find_packa ...
分类:其他好文   时间:2021-06-06 19:47:00    阅读次数:0
实验6 结构体
#include<stdio.h> #include<stdlib.h> #include<string.h> #define N 2 typedef struct student { int id; /* 学生学号 */ char name[20]; /* 学生姓名 */ char subject ...
分类:其他好文   时间:2021-06-06 19:16:23    阅读次数:0
c语言中用结构体表示点的坐标,并计算两点之间的距离
c语言中用结构体表示点的坐标,并计算两点之间的距离 1、 #include <stdio.h> #include <math.h> #define sqr(x) ((x) * (x)) typedef struct{ double x; double y; }Point; double dist(P ...
分类:编程语言   时间:2021-06-06 18:46:18    阅读次数:0
Cannot read property '__ob__' of undefined
写代码的时候遇到这个错误,看了好久才发现问题原因,特此记录一下: data需要写return{ },不写的话就会出现这个错误。 ...
分类:其他好文   时间:2021-06-05 18:25:58    阅读次数:0
实验6
1.学生信息处理 代码如下: (全部手敲了一遍累到自己了,就没有加很多注释.....) 1 #include <stdio.h> 2 #include <string.h> 3 #define N 3 4 typedef struct student{ 5 int num; //学号 6 char ...
分类:其他好文   时间:2021-06-05 17:45:16    阅读次数:0
678 Vue CLI,vite
Vue CLI脚手架 Vue CLI 安装和使用 npm install @vue/cli -g vue create 项目的过程 项目的目录结构 认识Vite Vite的构造 浏览器原生支持模块化 Vite的安装和使用 npm install vite –g # 全局安装 npm install ...
分类:其他好文   时间:2021-06-05 17:41:29    阅读次数:0
二、C程序编译过程
C程序编译过程: 预处理、编译、汇编、连接; 一 预处理 预处理的过程主要处理包括以下过程: 将所有的#define删除,并且展开所有的宏定义 处理所有的条件预编译指令,比如#if #ifdef #elif #else #endif等 处理#include 预编译指令,将被包含的文件插入到该预编译指 ...
分类:其他好文   时间:2021-06-04 18:52:56    阅读次数:0
llvm 创建函数
IR: define i32 @add1(i32 %p1) { entry: %retVal = add i32 1, %p1 ret i32 %retVal } #include "llvm/ExecutionEngine/Orc/LLJIT.h" #include "llvm/IR/Functi ...
分类:其他好文   时间:2021-06-02 20:31:32    阅读次数:0
camke(1)配置Opencv
首先装好opencv。 然后创建工程 CMakeLists.txt # cmake needs this line cmake_minimum_required(VERSION 3.1) # Define project name project(opencv_example_project) # ...
分类:其他好文   时间:2021-06-02 18:54:02    阅读次数:0
25272条   上一页 1 ... 6 7 8 9 10 ... 2528 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!