发布时间:2013-08-21 16:41:51
控制语句顺序。。。。。---------------分支if ....else if 表达式 else 表达式//---------------ifelse ifelse//----------if XXXX {if(XXX){}else{}}else{} switch ...caseswitch XXXXcase XX:{XXXXX}//break;case XX:{XXXX}break;default:(XXXXX.........【阅读全文】
发布时间:2013-08-21 16:41:44
cp :命令行参数int main(int argc,char *argv[])文件打开openint open(const char *pathname, int flags);pathname:"./1.c" "/mnt/hgfs/桌面/share/第五天/day5/1.c"open("./1.c",O_RDWR);creat:fd = open(F_NAME,O_RDWR|O_CREAT,777);O_RDWR|O_CREAT 操作属性 777 代表文件本身的属性文件的.........【阅读全文】
发布时间:2013-08-21 16:41:39
1.硬件+软件(linux)2.pc -----bios(引导程序)<初始化一些硬件:加载操作系统>-----win/linux..。。------(windows操作系统,文件管理在一个硬盘上,linux os文件管理是分开的)3.开发板启动的流程:arm开发板----uboot(引导程序)---------kernel---------文件系统移植uboot:uboot已经移植在nand中。初始.........【阅读全文】
发布时间:2013-08-21 16:41:23
#include <stdio.h>#include<linux/types.h>#include <stdlib.h>#include <unistd.h>#include <fcntl.h>#include <string.h>#include <sys/types.h>#include <sys/stat.h>#include <sys/ioctl.h>/*--------------------------*/ //具体开发板相关#define LED_ON _IO('k', 0)#define LED_OFF _IO('k'.........【阅读全文】
发布时间:2013-08-21 16:41:17
数组:一段存储相同数据类型的连续的内存数组的特性:在内存中的存储方式都是一维的因为内存是线性唯一的一维数组:定义:int a[5];int n; int a[n];//在定义a[n],n 必须确定,且不能定义初始化 // int n =5; int a[n]={1,2,3,4,5}-----error//n=5; int a[n]; n=6;int a[]={1,3,5}//在定义时必须初始化 int a[.........【阅读全文】