搜索结果

找到约 41,106 项符合 C-main 的查询结果

编译器/解释器 简单C编译器生成的目标代码是8086的汇编代码(16位)

简单C编译器生成的目标代码是8086的汇编代码(16位),可以在一般的PC上被像MASM之类的汇编编译程序编译,生成可执行文件后,在DOS或Windows控制台下运行。 实现的语言定义如下: 语言类似于tiny语言,不支持过程调用,也就是只有一个main函数,无其他函数和全局变量 基本语句:注释语句(/*…*/),输入语句(int input(void ...
https://www.eeworm.com/dl/628/256092.html
下载: 183
查看: 1456

网络 PTypes (C++ Portable Types Library) is a simple alternative to the STL that includes multithreading

PTypes (C++ Portable Types Library) is a simple alternative to the STL that includes multithreading and networking. It defines dynamic strings, variants, character sets, lists and other basic data types along with threads, synchronization objects, IP sockets and named pipes. PTypes also offers messa ...
https://www.eeworm.com/dl/635/275729.html
下载: 78
查看: 1046

加密解密 用c++实现des算法 整体思路 用key.cpp 文件来产生秘钥

用c++实现des算法 整体思路 用key.cpp 文件来产生秘钥,用ringfuction.cpp文件来实现轮函数,用main.c来实现加密和解密。有关函数见三个文件里的具体实现。
https://www.eeworm.com/dl/519/275822.html
下载: 121
查看: 1027

数据结构 编程题(15_01.c) 结构 struct student { long num char name[20] int score struct student *

编程题(15_01.c) 结构 struct student { long num char name[20] int score struct student *next } 链表练习: (1).编写函数struct student * creat(int n),创建一个按学号升序排列的新链表,每个链表中的结点中 的学号、成绩由键盘输入,一共n个节点。 (2).编写函数void print(struct student *head),输出 ...
https://www.eeworm.com/dl/654/283216.html
下载: 126
查看: 1256

数值算法/人工智能 TSP算法 1.C语言TSP算法 2.2-OPT

TSP算法 1.C语言TSP算法 2.2-OPT,orOPT摄动 3.Main单独执行
https://www.eeworm.com/dl/518/300029.html
下载: 43
查看: 1189

汇编语言 用户用main表示主函数

用户用main表示主函数,每个c程序必有一个main函数。
https://www.eeworm.com/dl/644/313388.html
下载: 197
查看: 1060

微处理器开发 程序名称: 数码管显示与键盘管理芯片ZLG7289的标准驱动程序(C51) 文件名: ZLG7289.h ZLG7289.C 说明: 本程序已经调试通过 程序的可移植性很好

程序名称: 数码管显示与键盘管理芯片ZLG7289的标准驱动程序(C51) 文件名: ZLG7289.h ZLG7289.C 说明: 本程序已经调试通过 程序的可移植性很好,仅做少量修改就可以直接包含使用 程序占用资源少,仅使用4根必须I/O口线,不占用定时器等其它资源 所有全局性的标识符都以ZLG7289_开头,不必担心命名冲突问题 程序 ...
https://www.eeworm.com/dl/655/334548.html
下载: 107
查看: 1087

单片机开发 该头文件配合key.c

该头文件配合key.c,在main函数中调用key.c,都文件中添加key.h,使软件更清晰,一目了然
https://www.eeworm.com/dl/648/344834.html
下载: 95
查看: 1019

编译器/解释器 用C语言编写ARM程序时

用C语言编写ARM程序时,执行的第一条指令,并不在main函数中。当我们生成一个C程序的可执行文件时,编译器总是在我们的代码前加一段固定的代码——crt0.o,它是编译器自带的一个文件。此段代码设置C程序的堆栈等,然后调用main函数。很可惜,在我们的裸板上,这段代码无法执行,所以我们得自己写一个。这段代码很简单,只有 ...
https://www.eeworm.com/dl/628/370938.html
下载: 114
查看: 1048

单片机开发 AMOP 0.3 is an Automatic Mock Object for C++. By using ABI and template techniques, it can simulate

AMOP 0.3 is an Automatic Mock Object for C++. By using ABI and template techniques, it can simulate a pseudo-"Reflection" which is normally not support in C++ . The main differences between AMOP and other mock object library is that, users DO NOT need to implement the interface of the object which ...
https://www.eeworm.com/dl/648/374168.html
下载: 187
查看: 1044