搜索资源列表
Intel_IA32_C_CPU
- 剖析Intel IA32 架构下C 语言及CPU 浮点数机制 Version 0.01 哈尔滨工业大学 谢煜波 (email: xieyubo@126.com 网址:http://purec.binghua.com) (QQ:13916830 哈工大紫丁香BBSID:iamxiaohan) 前言 这两天翻看一本C 语言书的时候,发现上面有一段这样写到 例:将同一实型数分别赋值给单精度实型和双精度实型,然后打印输出。 #include <stdio.h>
wenzhouxueyuan
- #include <stdio.h> #include <stdlib.h> #define OK 1 #define OVERFLOW -2 typedef int status typedef struct LinkList{ //用带表头结点的有序链表表示多项式 float coef //系数 int expn //指数 struct LinkList *next //指向后继的指针
sunxuzhan
- 顺序栈的出栈、入栈、求栈长等基本操作 #include <stdio.h> #include <stdlib.h> #define STACKSIZE 50 typedef char DateType typedef struct-#include <stdio.h> #include <stdlib.h> #define STACKSIZE 50 typedef char DateType typedef
ARM(VB)
- 自己开发的wince操作系统上开发的VB上位机界面,源代码完全开放,开发软件采用visual stdio 2005,搞了很久,希望对大家又帮助-wince operating system developed by VB PC interface, a completely open source code, software development using visual stdio 2005
setup-driverStudio
- driver stdio 安装方法,希望对大家有所帮助吧,-driver stdio installation method, we want to help, huh, huh
time-example
- 1.程序分析: 2.程序源代码: #include "stdio.h" #include "conio.h" #include "time.h" void main() { time_t lt /*define a longint time varible*/ lt=time(NULL) /*system time and date*/ printf(ctime(<)) /*english format output*/ printf(asct
biancheng
- 堆排序编程实现: #include <stdio.h> void createHeep(int ARRAY[],int sPoint, int Len) //生成大根堆 -The heapsort programming:# include <stdio.h> void createHeep (int ARRAY [], int sPoint, int Len)// generate large root heap
bianchengmaopao
- 冒泡排序编程实现如下: #include <stdio.h> #define LEN 10 //数组长度 -Bubble Sort programming as follows:# include <stdio.h># Define LEN 10// array length
C100p3Dp3D11--20
- #include "stdio.h" #include "conio.h" main() { long f1,f2 int i f1=f2=1 for(i=1 i<=20 i++) {-# Include " stdio.h" # include " conio.h" main () {long f1, f2 int i f1 = f2 = 1 for (i = 1 i < = 20 i++) {
Viscoding-standards
- virsual stdio C++ 编码规范,摆脱曾经的高难度化-virsual stdio C++ coding standards, once difficult to get rid of
VS2010
- 这里我教大家如何安装和使用微软公司新的编译工具Visual Stdio 2010。这里将帮助大家安装Visual C++ 2010,帮助大家做一些常见的配置 -Here I teach you how to install and use Microsoft' s new compilation tools Visual Stdio 2010. Here will help you install Visual C++ 2010, to help you do some common
Desktop
- #include<stdio.h> #include<math.h> main() { int i,x scanf(" d",&x) for(i=2 i<=x-1 i++) if(x i==0) printf("NO\n") for(i=2 i<=x/2 i++) for(i=2 i<=sqrt(x) i++) } 第十行不加冒号时出错信息为: C:\Documents and Settings\w
A-simple-procedure
- #include<stdio.h> int main() { printf(“this is a c program.\n”) return 0 }-A simple procedure
CCC
- 题目:#if #ifdef和#ifndef的综合应用。 1. 程序分析: 2.程序源代码: 复制代码 代码如下: #include stdio.h #include conio.h #define MAX #define MAXIMUM(x,y) (x>y)?x:y #define MINIMUM(x,y) (x>y)?y:x void main() { int a=10,b=20 #ifdef MAX printf( \
HUDDSNUN
- 题目:#if #ifdef和#ifndef的综合应用。 程序源代码: #include stdio.h #include conio.h #define MAX #define MAXIMUM(x,y) (x>y)?x:y #define MINIMUM(x,y) (x>y)?y:x void main() { int a=10,b=20 #ifdef MAX printf( \40: The larger one is d\n
BNUTBDJNBOOFR
- 【程序29】 题目:给一个不多于5位的正整数,要求:一、求它是几位数,二、逆序打印出各位数字。 1. 程序分析:学会分解出每一位数,如下解释:(这里是一种简单的算法,师专数002班赵鑫提供) 2.程序源代码: 复制代码 代码如下: #include stdio.h #include conio.h main( ) { long a,b,c,d,e,x scanf( ld ,&x) a=x/10000 分解出万位 b=x 10000
CBVBBBVJRNRGRJ
- 题目:一个5位数,判断它是不是回文数。即12321是回文数,个位与万位相同,十位与千位相同。 1.程序分析 2.程序源 代码如下: #include stdio.h #include conio.h main( ) { long ge,shi,qian,wan,x scanf( ld ,&x) wan=x/10000 qian=x 10000/1000 shi=x 100/10 ge=x 10 if(ge
c04
- The iostreams classes are usually the first part of the C++ library that new C++ programmers learn to use. This chapter discusses how iostreams are an improvement over C s stdio facilities and explores the behavior of file and string streams in addit
hello
- 实现一个简单的整数计算器,能够进行加、减、乘、除和乘方运算。使用时算式采用后缀输入-microsoft visual stdio
BIG05
- A header file is a file with extension .h which contains C function declarations and macro definitions to be shared between several source files. There are two types of header files: the files that the programmer writes and the files that comes with