CodeBus
www.codebus.net
Search
Sign in
Sign up
Hot Search :
Source
embeded
web
remote control
p2p
game
More...
Location :
Home
Search - main.c
Main Category
SourceCode
Documents
Books
WEB Code
Develop Tools
Other resource
Sub Category
hospital software system
Finance-Stock software system
Education soft system
ERP-EIP-OA-Portal
Post-TeleCom sofeware systems
OA
Goverment application
Hotel software system
Shop supermarket software system
transportation applications
Home Personal application
Other systems
Energy industry
Search - main.c - List
[
Applications
]
学籍管理系统C语言版
DL : 0
学籍管理系统!利用C语言实现! 在构思基本模块时,订立了“读取文件到内存形成链表,对链表的操作,将内存的链表内容保存到文件”三大基本块。 读取文件:在main函数里完成。原理是,先检查文件指针是否在末尾,若否,则在内存开辟一个单位长度,在文件中读取单位长度数据入该空间中,并彼此构成链表。采取带参数的主函数,以保证保存文件的多样性。 对链表的操作:可分为插入(建立),删除,查找,修改,排序。五大基本功能。分别用五个函数完成。这里不一一描述。其中,删除,查找,修改都是要用到查找一个数据的操作。所以,在编写查找函数时,兼顾了删除,修改操作所需的元素。在删除中,尝试书中原始方法,而修改操作则保留我原有的引用。排序函数中,设想对已有的各项排序,因此按照每项再另建函数。通过代码量上的增加来确保运行的一次可行性。每次运行完都返回一个head值。再通过主函数的数据显示循环显示结果。 保存操作:关闭已打开文件。用“写”的形式建立同名的(同时自动删除原有的),将内存中的链表完全输出到文件中。-expulsion management system! The use of C language! The basic module concept, the setting of the "read files into memory formation Chain, Chain operation, the memory contents of the List to preserve documents" three basic block. Read documents : the main function was completed. Principle is that the first checks whether the file pointer at the end, and if not, in the memory unit opened up a length in the document read data into the unit length of the space, and with each other constitute List. Parameters taken with the main function, to ensure preservation of diversity. List of the operation : to be inserted into (building), delete, search, modify, sort. The five basic functions. Five were used to complete the function. January 1 is not described here. Which, delete, search, modi
Date
: 2008-10-13
Size
: 72.07kb
User
:
叶兆源
[
Applications
]
学籍管理系统C语言版
DL : 0
学籍管理系统!利用C语言实现! 在构思基本模块时,订立了“读取文件到内存形成链表,对链表的操作,将内存的链表内容保存到文件”三大基本块。 读取文件:在main函数里完成。原理是,先检查文件指针是否在末尾,若否,则在内存开辟一个单位长度,在文件中读取单位长度数据入该空间中,并彼此构成链表。采取带参数的主函数,以保证保存文件的多样性。 对链表的操作:可分为插入(建立),删除,查找,修改,排序。五大基本功能。分别用五个函数完成。这里不一一描述。其中,删除,查找,修改都是要用到查找一个数据的操作。所以,在编写查找函数时,兼顾了删除,修改操作所需的元素。在删除中,尝试书中原始方法,而修改操作则保留我原有的引用。排序函数中,设想对已有的各项排序,因此按照每项再另建函数。通过代码量上的增加来确保运行的一次可行性。每次运行完都返回一个head值。再通过主函数的数据显示循环显示结果。 保存操作:关闭已打开文件。用“写”的形式建立同名的(同时自动删除原有的),将内存中的链表完全输出到文件中。-expulsion management system! The use of C language! The basic module concept, the setting of the "read files into memory formation Chain, Chain operation, the memory contents of the List to preserve documents" three basic block. Read documents : the main function was completed. Principle is that the first checks whether the file pointer at the end, and if not, in the memory unit opened up a length in the document read data into the unit length of the space, and with each other constitute List. Parameters taken with the main function, to ensure preservation of diversity. List of the operation : to be inserted into (building), delete, search, modify, sort. The five basic functions. Five were used to complete the function. January 1 is not described here. Which, delete, search, modi
Date
: 2025-12-19
Size
: 247kb
User
:
叶兆源
[
Applications
]
xsb
DL : 0
这是一个用visual C++开发的学生成绩管理系统,适用于C++初学者,采用命令行界面方式。主要功能有学生成绩的新建、添加、删除、排序等,为了提高效率,程序没有使用链表,而采用了了数组实现。-This is a visual C development of student achievement management system, applicable to C beginners, using command-line interface mode. The main functions of the new student achievement, add, delete, sort, etc., in order to improve efficiency, the procedure did not use the list, while the use of the array to achieve.
Date
: 2025-12-19
Size
: 8kb
User
:
wuyanfei
[
Applications
]
A_Database1825931252004
DL : 0
This the main project file for VC++ projects generated using an Application Wizard. It contains information about the version of Visual C++ that generated the file, and information about the platforms, configurations, and project features selected with the Application Wizard.- This is the main project file for VC++ projects generated using an Application Wizard. It contains information about the version of Visual C++ that generated the file, and information about the platforms, configurations, and project features selected with the Application Wizard.
Date
: 2025-12-19
Size
: 32kb
User
:
naaz
[
Applications
]
client_serveur
DL : 0
client socket include <sys/types.h> include <sys/socket.h> include <stdio.h> include <netinet/in.h> include <arpa/inet.h> include <unistd.h> int main() { int sockfd int len struct sockaddr_in address int result char ch = A sockfd = socket(AF_INET, SOCK_STREAM, 0) address.sin_family = AF_INET address.sin_addr.s_addr = inet_addr("127.0.0.1") address.sin_port = 9734 len = sizeof(address) result = connect(sockfd, (struct sockaddr *)&address, len) if(result == -1) { perror("oops: client") exit(1) } write(sockfd, &ch, 1) read(sockfd, &ch, 1) printf("char from server = c\n", ch) close(sockfd) exit(0) } -client socket include <sys/types.h> include <sys/socket.h> include <stdio.h> include <netinet/in.h> include <arpa/inet.h> include <unistd.h> int main() { int sockfd int len struct sockaddr_in address int result char ch = A sockfd = socket(AF_INET, SOCK_STREAM, 0) address.sin_family = AF_INET address.sin_addr.s_addr = inet_addr("127.0.0.1") address.sin_port = 9734 len = sizeof(address) result = connect(sockfd, (struct sockaddr*)&address, len) if(result ==-1) { perror("oops: client") exit(1) } write(sockfd, &ch, 1) read(sockfd, &ch, 1) printf("char from server = c\n", ch) close(sockfd) exit(0) }
Date
: 2025-12-19
Size
: 1kb
User
:
nabilnapel
[
Applications
]
kmig_ceng
DL : 2
石油天然气专业代码,是自己开发的,在Windows系统下VC平台上实现,主程序用C和C++实现。此程序用来实现Kirchhoff地震波偏移。-Oil and gas professional code, is a self-developed, under the VC in the Windows system platform to achieve, the main program using C and C++ implementation. This procedure is used to achieve the Kirchhoff seismic migration.
Date
: 2025-12-19
Size
: 5kb
User
:
jacket
[
Applications
]
t_direct_decon
DL : 0
tsint.f90 Generates and writes a set of synthetic seismic traces that are read by the t_direct_decon.f90 code. The synthetic data is composed of 10 traces of 1000 samples, with a multiple of period p=200 samples, and reflection coefficient c=-0.5. This periodic reflectivity is convolved with a minimum-phase wavelet of 10 samples forming a synthetic trace that is replicated 10 times to generate the input matrix. For the single-channel example no noise is added to the synthetic data. For the multi-channel example a little noise is added to prevent instability in the algorithm, once the multi-channel algorithm fails because two or more channels are equal. The input data matrix is stored in direct access format in the input_panel.dir file. t_direct_decon.f90 Main code, reads and deconvolves data stored in the input_panel.dir file. The output is stored in direct access format in the deconvolved.dir file. The input and output data are also stored in a ASCII format in the in_out.dat file.-T_direct_decon is a Fortran 90 program for performing direct multichannel predictive deconvolution.
Date
: 2025-12-19
Size
: 8kb
User
:
蒋礼
[
Applications
]
c
DL : 0
本文论述了分析、开发、设计一个酒店管理系统的过程。该系统融入酒店科学、规范的现代管理思想,为提高各业务部门本身的工作效率,自动完成各业务部门之间的各种营业信息、帐务、报表的自动化传输与汇总,使各项业务工作制度化,科学化。-This text introduced the related contents of topic, and pass the design analysis, dividing the line the database, dividing the line system as four main function mold pieces
Date
: 2025-12-19
Size
: 486kb
User
:
孔庆舟
[
Applications
]
Hospital_MIS
DL : 0
医院管理系统.VS2005+SQL2000.这个是我学习C#进行CS开发的一个医院管理系统.适合新手学习,主要功能:前台:病人登记,病人预约,前台交费,药品退费,欠费催款,医生评价,医师开医令,药房发药,药品管理,退药入库,基本设置等.-Hospital Management System. VS2005+ SQL2000. This is me learn C# for CS development of a hospital management system. Suitable for novice to learn, the main features: front: patient registration, patient appointments, front payments, drug refund, arrears reminders, medical evaluation, the doctor opened medical orders, pharmacy dispensing, drug administration, withdrawal drug storage, and basic settings.
Date
: 2025-12-19
Size
: 899kb
User
:
405
[
Applications
]
Binary-Search-demo-program
DL : 0
c语言编写的小程序,主要功能是二进制数据搜索演示!-small program written in c language, the main function is to search for binary data presentation!
Date
: 2025-12-19
Size
: 1kb
User
:
xi2713580
[
Applications
]
智能立体车库程序
DL : 3
立体车库是当今世界主流选择,具有占地面积小,无人管理的特点。本程序包括按键程序、主程序、显示程序。(Three dimensional garage is the mainstream choice in the world today. It has the characteristics of small footprint and no management. This program includes key program, main program and display program.)
Date
: 2025-12-19
Size
: 57kb
User
:
hrz1900
CodeBus
is one of the largest source code repositories on the Internet!
Contact us :
1999-2046
CodeBus
All Rights Reserved.