Chinaunix首页 | 论坛 | 博客
  • 博客访问: 260381
  • 博文数量: 128
  • 博客积分: 65
  • 博客等级: 民兵
  • 技术积分: 487
  • 用 户 组: 普通用户
  • 注册时间: 2012-07-24 17:43
个人简介

人生境界:明智、中庸、诚信、谦逊

文章分类

全部博文(128)

文章存档

2014年(12)

2013年(116)

我的朋友

发布时间:2013-08-07 17:46:23

最近写的关于在嵌入式开发中常遇到的关于volatile关键字使用的短文,都是些通用的技术,贴上来share。另外,禁止转载。 对于volatile关键字,大部分的C语言教材都是一笔带过,并没有做太过深入的分析,所以这里简单整理了一些关于volatile的使用注意事项。实际上从语法上来.........【阅读全文】

阅读(566) | 评论(0) | 转发(0)

发布时间:2013-08-06 14:28:17

1、const下面的声明都是什么意思?const int a;int const a;const int *a;int * const a;int const * a const;/******/前两个的作用是一样,a是一个常整型数。第三个意味着a是一个指向常整型数的指针(也就是,整型数是不可修改的,但指针可以)。第四个意思a是一个指向整型数的常指针(也.........【阅读全文】

阅读(413) | 评论(0) | 转发(0)

发布时间:2013-02-22 16:45:02

char * strstr(const char * s1,const char * s2){int l1, l2;l2 = strlen(s2);if (!l2)return (char *) s1;l1 = strlen(s1);while (l1 >= l2) {l1--;if (!memcmp(s1,s2,l2))return (char *) s1;s1++;}return NULL;}......【阅读全文】

阅读(739) | 评论(0) | 转发(0)

发布时间:2013-01-10 11:07:40

getopt被用来解析命令行选项参数。#include <unistd.h>      extern char *optarg;  //选项的参数指针      extern int optind,   //下一次调用getopt的时,从optind存储的位置处重新开始检查选项。       extern int opterr,  //......【阅读全文】

阅读(441) | 评论(0) | 转发(0)
给主人留下些什么吧!~~
留言热议
请登录后留言。

登录 注册