c语言源代码文件的后缀名是什么

“c语言源代码文件的后缀名是什么”相关的资料有哪些?“c语言源代码文件的后缀名是什么”相关的范文有哪些?怎么写?下面是小编为您精心整理的“c语言源代码文件的后缀名是什么”相关范文大全或资料大全,欢迎大家分享。

c语言源代码

标签:文库时间:2024-11-19
【bwwdw.com - 博文网】

acm经典百题

#include int main( )1088 阶乘求和 { int ncase,n, i,j; long sum,t; scanf("%d", &ncase); for(i=0;i #include main() 1108 {int n; 单词缩写月份的英文缩 写 while(scanf("%d\n",&n)!=EOF& &n>0&&n<=12) {if(n==1)printf("Jan\n"); else if(n==2)printf("Feb\n"); else if(n==3)printf("Mar\n"); else if(n==4)printf("Apr\n"); else if(n==5)printf("May\n"); else if(n==6)printf("June\n"); else if(n==7)printf("July\n

C语言2048源代码

标签:文库时间:2024-11-19
【bwwdw.com - 博文网】

#include #include #include #include #define N 4

void Generat_picture(int d[N][N],char c[N][N][N],int s); void Control_synthesis(int a[N][N]); void add_num(int a[N][N]); void swap(int *a,int *b); int score(int a[N][N]); int moveup(int a[N][N]); int movedown(int a[N][N]); int moveleft(int a[N][N]); int moveright(int a[N][N]); int main() {

int d[N][N]; char c[N][N][N]; int i,j,s=2; system(\ for(i=0; i

add_num(d);

Generat_picture(d,c,s); Control_synthesis(d); s=score(d);

C语言串口通信-源代码

标签:文库时间:2024-11-19
【bwwdw.com - 博文网】

C语言串口通信-源代码

#include <stdio.h>

#include <dos.h>

#include <conio.h>

#include <string.h>

#define COM232 0x2f8

#define COMINT 0x0b

#define MaxBufLen 500

#define Port8259 0x20

#define EofInt 0x20

static int comportaddr;

static char intvectnum;

static unsigned char maskb;

static unsigned char Buffer[MaxBufLen];

static int CharsInBuf,CircIn,CircOut;

static void (interrupt far *OldAsyncInt)();

static void interrupt far AsyncInt(void);

void Init_COM(int ComPortAddr, unsigned char IntVectNum, int Baud,

un

MODBUS通讯+C语言源代码

标签:文库时间:2024-11-19
【bwwdw.com - 博文网】

MODBUS通讯+C语言源代码

/*********************************************************************************/

/*函数名称: strmcpy()

*输入参数: 共 个参数;

*输出参数: 共 个参数;

*返回值:

*需储存的参数: 共 个参数;

*功能介绍:

(1)字符数组拷贝;

*修改日志:

*[2006-3-6 17:07] Ver. 1.00

开始编写;

完成;

/* */

/*********************************************************************************/

void strmcpy(unsigned char dest[], unsigned char src[], int count) {

int i;

for(i = 0; i < count; i ++)

{

dest[i] = src[i];

}

dest[i] = '\0';

}

/**************************************

256级灰度BMP文件读写的源代码+c语言图像处理

标签:文库时间:2024-11-19
【bwwdw.com - 博文网】

本文档最早发布于 http://blog.sina.com.cn/u/1495182054

1.256级灰度BMP文件读写的源代码!

首先要明白256级灰度BMP文件的格式

1.首先是一个14个字节的文件头,定义如下

typedef struct tagBITMAPFILEHEADER{ WORD bfType; DWORD bfSize;

WORD bfReserved1; WORD bfReserved2; DWORD bfOffBits;

} BITMAPFILEHEADER, *PBITMAPFILEHEADER;

bfType是表明BMP文件类型的数据,在这里我们填入的是0x4d42,其实就是BM两个字,bfSize是文件大小,bfOffBits是文件头到数据块的偏移量,对于256级灰度图,就是1078个字节,后面会做描述

2.接下来是40个字节的是描述位图属性的40个字节

typedef struct tagBITMAPINFOHEADER{ DWORD biSize; LONG biWidth; LONG biHeight; WORD biPlan

基于c语言的文件系统FAT16操作源代码

标签:文库时间:2024-11-19
【bwwdw.com - 博文网】

文件: FAT.H

//微控设计网原创 www.Microcontrol.cn 作者: debug版主 typedef unsigned char uint8; typedef unsigned int uint16; typedef unsigned long uint32;

#pragma pack(1)

typedef struct {

uint8 BS_jmpBoot[3]; uint8 BS_OEMName[8]; uint16 BPB_BytesPerSec; uint8 BPB_SecPerClus; uint16 BPB_RsvdSecCnt; uint8 BPB_NumFATs; uint16 BPB_RootEntCnt; uint16 BPB_TotSec16; uint8 BPB_Media; uint16 BPB_FATSz16; uint16 BPB_SecPerTrk; uint16 BPB_NumHeads; uint32 BPB_HiddSec; uint32 BPB_TotSec32; uint8 BS_DrvNum; uint8 BS_Reservedl; uint

学生管理系统 c语言源代码

标签:文库时间:2024-11-19
【bwwdw.com - 博文网】

学生管理系统 c语言源代码

#include <stdio.h>

#include <dos.h>

#include <string.h>

#include <stdlib.h>

#include <malloc.h>

#define SIZE 8

struct student

{

char name[20];

char num[15];

int score[5];

float ave;

struct student *next;

}stu[SIZE],temp,s;

void shuru()

{

int i,j,sum,length,flag=1,a;

FILE *fp;

while(flag==1)

{

printf("Define a range>class number:");

scanf("%d",&a);

printf("Input the total number of the class(<a):");

scanf("%d",&length);

if(length<a)

flag=0;

}

for(i=0;i

C语言小游戏源代码《打砖块》

标签:文库时间:2024-11-19
【bwwdw.com - 博文网】

#include "graphics.h"
#include "stdio.h"
#include "conio.h" /*所需的头文件*/

int on; /*声明具有开关作用的全局变量*/
static int score; /*声明静态的记分器变量*/


/* 定义开始界面函数*/

int open()
{
setviewport(100,100,500,380,1); /*设置图形窗口区域*/
setcolor(4); /*设置作图色*/
rectangle(0,0,399,279); /*以矩形填充所设的图形窗口区域*/
setfillstyle(SOLID_FILL,7); /*设置填充方式*/
floodfill(50,50,4); /*设置填充范围*/
setcolor(8);
settextstyle(0,0,9); /*文本字体设置*/
outtextx

C语言实习题目源代码

标签:文库时间:2024-11-19
【bwwdw.com - 博文网】

彩票兑奖系统和通讯录管理系统源代码VC++6.0亲测

题目一:通讯录

设计一个通讯录管理系统,每条记录包括:联系人姓名、性别、电话、住址、Email等。 系统功能要求:

(1)显示通讯录所有内容。按联系人姓名首字母排序,并统计共有多少条记录。

(2)查询通讯录。可按联系人姓名或电话号码查询,将查询结果整条记录输出到屏幕。

(3)修改通讯录。通过查询功能,找到需要修改的记录,并修改内容。在修改记录前显示是否要删除的提示。

(4)添加记录。需要判断新添加的记录是否存在,若存在终止该操作。

(5)删除指定记录。通过查询功能,找到要删除的记录。在删除记录前显示是否要删除的提示。

(6)退出通讯录管理系统。

题目二:兑奖程序

体育彩票有七位数字组成,第7位数字是特别号码,只有在前面六位数都正确的时候才对第七位数进行判断。现在体彩中心给出了 一组特等奖号码是:1、2、3、4、5、6、7。程序要求在屏幕上任意输入一组号码判断中了几等奖。

判断条件:如果七位数字都相同就是特等奖,前六位相同为一等奖,任意连续五位相同为二等奖,任意连续四位相同为三等奖,任意连续三位为四等奖,任意连续两位相同为五等奖。(注意:除特等奖外都不考虑第七位)。不考虑号码位置,只要连续几位相同都可以。比如给出

c语言图书管理系统源代码

标签:文库时间:2024-11-19
【bwwdw.com - 博文网】

课程设计

//******************************************* //图书管理系统v1.0 作者:何星霖 //2016年1月5日

//******************************************* //头文件

#include #include #include #include #include #include

//*********************************************** //结构体

//*********************************************** //时间

typedef struct t { int year; int month; int day; }TIME;

//图书信息

typedef struct book { char no[5]; char name[31]; char author[21]; char publish[25]; char sort[21]; char publish_date[14]; char ISBN[18]; TIME wareroom_dat