??
SISD(Single Instruction SingleDatastream,单指令流单数据流):单处理器计算机,对保存在单一存储器中的数据进行操作。
SIMD(Single Instruction Multiple Datastream,单指令流多数据流):同一条指令控制多个处理器的运行。
MISD(Multiple Instruction Single Datast...
分类:
其他好文 时间:
2014-05-22 13:19:28
阅读次数:
191
笔记本换成XP系统后,单击我的电脑或者别的时候,有时会提示,下面的错误提示:
---------------------------
IExplore.exe - 应用程序错误
---------------------------
"0x00a1bdb3" 指令引用的 "0x00000001" 内存。该内存不能为 "read"。
要终止程序,请单击“确定”。
要调试程序,请单击“取消”。
...
分类:
数据库 时间:
2014-05-22 12:51:43
阅读次数:
472
#include
#include
#include //system(); 这个指令需要用到此头文件
#include //toupper要用到
#include //在内存管理时用到的头文件
void main()
{
int i;
struct ListEntry {
int number;
struct ListEntry *next;
} start, ...
分类:
其他好文 时间:
2014-05-22 10:51:06
阅读次数:
204
#include
#include
#include //system(); 这个指令需要用到此头文件
#include //toupper要用到
void main()
{
float value = 1.23456;
printf("%8.1f\n", value);
printf("%8.3f\n", value);
printf("%8.5f\n", value)...
分类:
其他好文 时间:
2014-05-22 09:18:08
阅读次数:
257
---------------------- IOS开发、Android培训、期待与您交流!
----------------------
一、什么是预处理指令
预处理指令是告诉编译器在编译之前预先处理的一些指令,有宏定义,文件包含,条件编译。
预处理指令一般以 # 号开头,可以出现在文件的任何地方,作用于整个文件。
二、宏定义
宏定义分不带参...
分类:
其他好文 时间:
2014-05-22 07:10:51
阅读次数:
247
#include
#include
#include //system(); 这个指令需要用到此头文件
#include //toupper要用到
#include //在内存管理时用到的头文件
void main()
{
char letter; // Letter typed by the user
printf("Do you want to continue? (...
分类:
其他好文 时间:
2014-05-22 06:18:00
阅读次数:
340
c语言里所有以#开头的都是预编译指令,就是在正式编译之前,让编译器做一些预处理的工作。
#ifdef DEBUG printf("variable x has value = %d\n",x);
#endif#if和#endif是配对的,叫做条件编译指令,如果满足#if后面的条件,就编译#if和#....
分类:
其他好文 时间:
2014-05-22 04:37:10
阅读次数:
251
1. 什么是异常2. 异常的分类3. try...catch..finally结构的使用方法1.
什么是异常 异常:中断了 正常指令流的 事件 异常 是在程序运行的时候产生的 1 class Test{2 public static void
main(String args []){3 ...
分类:
编程语言 时间:
2014-05-22 03:33:39
阅读次数:
346
编程:启动程序实现很简单的功能在屏幕中央;打印一行字符串(汇编+c+redhatlinux实现)汇编语言编写:boot.asm启动程序代码:;我们的启动程序实现很简单的功能在屏幕中央;打印一行字符串org07c00h;org指令明确告诉编译器我程序开始地址是07c00h,而不是;原来的00000;int汇编指..
分类:
系统相关 时间:
2014-05-20 19:24:33
阅读次数:
501
#include
#include
#include //system(); 这个指令需要用到此头文件
#include //toupper要用到
void main()
{
printf("Displaying 0.1234 yields %g\n", 0.1234);
printf("Displaying 0.00001234 yields %g\n", 0.000012...
分类:
其他好文 时间:
2014-05-20 14:57:03
阅读次数:
198