码迷,mamicode.com
首页 >  
搜索关键字:define    ( 25272个结果
Codeforces Round #712 (Div. 2) A~E 题解
本场链接:Codeforces Round #712 (Div. 2) A. Déjà Vu 签到题,尝试一下插入首位元素或者插入第一个不是a的位置.两者都不行必然是NO. #define _CRT_SECURE_NO_WARNINGS #include <bits/stdc++.h> using ...
分类:其他好文   时间:2021-04-06 14:34:27    阅读次数:0
typedef的用法总结
原文链接:https://blog.csdn.net/wangqiulin123456/article/details/8284939 用途一:与#define的区别 typedef 行为有点像 #define 宏,用其实际类型替代同义字。不同点是 typedef 在编译时被解释,因此让编译器来应付 ...
分类:其他好文   时间:2021-04-05 11:52:36    阅读次数:0
字符设备驱动 以及Makefile
#include <linux/module.h> // module_init module_exit #include <linux/init.h> // __init __exit #include <linux/cdev.h> #include <linux/fs.h> #define MY ...
分类:其他好文   时间:2021-04-01 13:34:35    阅读次数:0
Qt QListView 简单应用
简言:listview 无论在mfc中还是在Qt中应用是极其广泛的,本节简单进行Qlistview在Qt中操作。 目标:QlistView中插入一段数据,根据点击的相应顺序,弹出列表中的项目。 .h 1 #ifndef MAINWINDOW_H 2 #define MAINWINDOW_H 3 4 ...
分类:其他好文   时间:2021-03-30 13:44:32    阅读次数:0
678. Valid Parenthesis String
Given a string s containing only three types of characters: '(', ')' and '*', return true if s is valid. The following rules define a valid string: An ...
分类:其他好文   时间:2021-03-30 13:25:25    阅读次数:0
设计vue3的请求实体工厂
创建一个具备一个请求完整封装的实例,可以便捷的请求,取消请求,获取数据和请求状态等功能 ...
分类:其他好文   时间:2021-03-29 12:34:27    阅读次数:0
实验 2 C语言中的表达式及输入输出函数编程应用
#define _CRT_SECURE_NO_DEPRECATE #include <stdio.h> int main() { int num; scanf("%d", &num); printf("2049%04d\n", num); scanf("%d", &num); printf("204 ...
分类:编程语言   时间:2021-03-29 12:27:05    阅读次数:0
C语言实现顺序栈
#include <stdio.h> #define NUMBER 100 int push(int* a, int top, int data) { a[++top] = data; return top; } int pop(int* a, int top) { if (top == -1) { ...
分类:编程语言   时间:2021-03-29 12:23:07    阅读次数:0
Codeforces Round #678 (Div. 2)A B C 题解
题意&思路:Wuuuu~,其实就是问总和是不是为M #include<iostream> #include<cstring> #include<cmath> #include<algorithm> #define rep(i,n) for(i=1;i<=n;++i) #define ms(a,n) ...
分类:其他好文   时间:2021-03-18 14:17:01    阅读次数:0
C++Learn01--宏替换的注意事项
理解宏定义的关键在于”替换“ 该命令有两种格式:一种是简单的宏定义,另一种是带参数的宏定义 《1》简单的宏定义: #define 宏名 字符串 《2》带参数的宏定义 #define 宏名(参数表) 宏体 错误示范: #define Square(x) x*x float teamp=Square(3 ...
分类:编程语言   时间:2021-03-18 14:05:14    阅读次数:0
25272条   上一页 1 ... 14 15 16 17 18 ... 2528 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!