1.安装插件:Background(ClaudiaIDE)Color Theme Editor for Visual Studio 2019路径:【工具】->【扩展和更新】->【联机】 2.设置:【工具】->【选项】->【ClaudiaIDE】然后可以设置图片背景。记得把Expand to IED该 ...
分类:
其他好文 时间:
2020-09-12 21:25:07
阅读次数:
99
#VS Code:Windows下编写运行C/C程序(GCC) ##安装Visual Studio Code ##在VS Code中安装 C/C扩展(快捷键:Ctrl+Shift+X) ##安装Mingw-w64 下载地址:https://sourceforge.net/projects/mingw ...
分类:
编程语言 时间:
2020-09-11 14:14:04
阅读次数:
70
学习视频链接: https://www.bilibili.com/video/BV1nE411u7uu?p=5 P5 基础知识点: 启动visual studio cmd中输入 devenu 即可 ①以 .CS 结尾的文件大多都是类文件 ②解决方案,类,项目之间的关系:解决方案可以包含多个项目,项目 ...
#include <stdio.h>#include <malloc.h>typedef struct Node{ int data; struct Node *next;}Node; void reverseNode(Node *head){ Node *cur = head->next; Nod ...
分类:
编程语言 时间:
2020-09-09 19:08:28
阅读次数:
43
#include "stdio.h" #include "stdint.h" #include "windows.h" #include "ws2tcpip.h" void main(void) { struct sockaddr_in sa; char str[INET_ADDRSTRLEN]; ...
分类:
Web程序 时间:
2020-09-09 19:04:36
阅读次数:
51
#define _CRT_SECURE_NO_WARNINGS#include<stdio.h>#include<string.h>#include<stdlib.h>#include<math.h>#include<time.h> void my_strcat01(char*ch1,char*ch ...
分类:
编程语言 时间:
2020-09-04 17:27:09
阅读次数:
52
一.大数加法 定义两个足够大的数字,其数值远超过long的取值范围,设该大数的位数有两百位,求其相加所得 大数加法的核心思想详见此链接,内有详细的动画演示,这里不再赘述 大数加法、大数阶乘 直接上代码: #include<string.h> #include<stdio.h> #define N 1 ...
分类:
编程语言 时间:
2020-08-31 11:54:08
阅读次数:
55
#include <stdio.h>#include <malloc.h>//结点结构体定义typedef struct link_node { int n;//数据域 struct link_node *next;//指针域:(此时结构体尚未定义完整,不能用 NODE *next; )用该结构体类 ...
分类:
其他好文 时间:
2020-08-28 15:04:53
阅读次数:
74
你是否在排查运行缓慢的 web 应用程序时怀疑是数据库层造成的?以前排查数据库层需要特定的工具,现在可以使用 Visual Studio 的 Performance Explorer 中的数据库分析工具快速而轻松地排查。 ...
分类:
数据库 时间:
2020-08-28 14:36:46
阅读次数:
60
include<stdio.h> include<malloc.h> typedef struct Queue { int * pBase; int front; int rear; }QUEUE,*PQUEUE; void init_queue(PQUEUE);//初始化 bool en_queu ...
分类:
其他好文 时间:
2020-08-28 14:28:37
阅读次数:
45