搜索资源列表
CoordinateISO6709compliant
- I have seen many articles here at CodeProject about coordinates and GPS signal handling, like \"Writing your own GPS Applications\" and \"Distance between locations using latitude and longitude\" among others. Most of them do some tasks around a lati
词法分析程序(编译原理)
- 用C语言写的词法分析程序 #include "stdio.h" #include"string.h" #include "stdlib.h" FILE *fp; char filename[20]; char token[100]; int m=0; char getch() { char ch; ch=fgetc(fp); return ch; } char getbc
HTTP
- HTTP协议的C语言编程实现实例 HTTP协议的C语言编程实现实例 HTTP协议的C语言编程实现实例-#include <stdio.h> #include <stdlib.h> #include <string.h> #include <sys/types.h> #include <sys/socket.h> #include <errno.h> #include <unistd.h>
rls
- c语言编写的俄罗斯方块程序,c语言环境编写,供大家娱乐一下:)-/********************************/ /* Desc: 俄罗斯方块游戏 */ /* Date: 2008.03.12 22:30 */ /********************************/ #include <stdio.h> #include <bios.h> #include
flight
- 1. 学习和掌握结构体和链表相关知识,掌握程序设计基本过程; 2. 简单的系统与功能分析,了解航班信息管理系统的需求,用C语言开发航班信息管理系统; 3. 建立数据结构链表,数据内容包括航班号、航线、起飞时间、到达时间、机型、所属公司、价格; 4. 编写实现程序功能的各个函数; 5. 建立一个测试数据表,包含十多条航班信息,进行数据测试; 6. 使用数据链表实现数据的:录入、查询、显示、删除、修改、排序、文件保存、系统退出等功能; 调试系统,处理少数系统出错,优化系统界面
info_sys.tar
- 《简单信息管理系统(C语言描述)》 这是本人用C语言实现的简单信息管理系统,由顺序存储的线性表来组织数据结构,程序在CentOS 5.1环境下完成,我的博客上有程序界面截图(我的博客:http://blog.163.com/joshuachan@yeah/)。 本系统实现的数据操作: 增加/遍历/排序/查询及删除匹配数据/数据文件的导入和导出。 系统文件组成: 测试程序<test.c>,综合头文件<main.h>,
h
- 串的匹配问题,用C语言实现此算法,很实用的算法。-The string matching problem, this algorithm, a practical algorithm using C language.
a-check-string-class
- 自己写的一个类,实现对字符串的检测。(C++语言) 可以检查字符串是否满足某种指定的类型格式, 指定的类型格式包括整型数、浮点数、布尔型、有特殊要求的字符串等, 同时允许把字符串转换成相应的数据类型, 可用于对用户输入字符串的检验和转换等。 该类允许指定检测哪些内容,如是否超过给定最大值、是否越界等等, 仅用字符串操作来检测,而不是用正则表达式,不过效率蛮高的。 资源中包括使用说明,数个(.h)和(.cpp)文件 在VC6和VS2010上都可调试通过,
string
- C语言string.h几个常用函数的源码-C language string.h the source of several commonly used functions
jieshiqi
- 用C语言编写实现解释器,希望对你们有所帮助。 #include<stdio.h> #include<stdlib.h> #include<string.h> main()-C language interpreter, you want to be helpful.# Include <stdio.h># Include <stdlib.h># Include <string.h> main ()
file5
- C语言实验5,学生信息管理系统#include "stdio.h" #include "stdlib.h" #include "string.h" #include "malloc.h" -student infomation management system
ATmega128DS18B20
- Tmega28的温度传感器DS18B20控制程序,显示环境温度,编译优化等级-01 //DS18b20的C语言驱动程序,三位数码管显示,读取当前环境温度,精度达0.1度,温度范围0-99度-#include <string.h> #include <stdio.h> #define F_CPU 7372800 /* 单片机主频为7.3728MHz,用于延时子程序*/ #include <util/delay.h> #include &l
Simple-power-on-password-program
- 基于C语言实现简单的开机密码程序#include "conio.h"#include "string.h"#include "stdio.h"-Based on the C language to achieve a simple power-on password program#include "conio.h"#include "string.h"#include
cal
- UCGUI计算器类文件源码下载,基于C语言环境,界面友好,大家可互相学习一下!-很好用的calculator1_UCGUI2。实现说明:把要处理的字符串转化为结构体,修正得到的结构体,如4(3+1)-->4*(3+1) , sin7-->sin(7),提高程序的应用性,把常用的数学函数用一个大写字母表示 如sin 为 H ,sqrt 为 S 把处理的字符串中的表示数字的字符化为double 型-UCGUI calculator class file download source c
letter_order
- 一个简单的排序问题的解答,编程语言是C。 ■题目 输入为一个长度在1000字节以内,只含有英文半角小写字母的字符串。 请计算输出其中各字母出现的次数,按照从多到少的顺序排列并输出。 要求每行输出一个字母,并且当字母出现次数相同时,按照字母顺序输出结果。 ■例① 输入: abbccc 输出: c b a ■例② 输入: bcagggqhhhtlllopppiacb 输出: g h l p a b
cstring-master
- C语言实现字符串功能 String.h 纯C语言实现(C language to achieve string function String.h Pure C language implementation)
C语言中scanf的使用
- 首先需要#include <stdio.h>int scanf( const char *format, ... );scanf()函数是格式化输入函数,它从标准输入设备(键盘) 读取输入的信息。第一个参数format为一个常量字符串,这个字符串中如果包含‘%’符号则使用后续参数进行匹配如:scanf("%d%d", &a, &b);(First, we need #include <stdio.h>int scanf (const c