C/C++标准库使用
收集了看一下C/C++标准库使用的相关网站:
GNU官网:
http://www.gnu.org/
该网站包含C/C++标准库的使用范例,值得参考:
http://www.cplusplus.com/
在嵌入式第三方软件移植时,会使用STL模板库作相应移植,如Android平台JNI封装及移植等。
该网站介绍stlport的使用,stlport已可成功移植至Android等嵌入式平台,并且成为嵌入式第三方软件移植开发不可或缺的一部分。
http://www.stlport.org/
http://www.sgi.com/tech/stl/
http://www.cppreference.com/wiki/stl/start
相关文档:
http://www.trendcaller.com/2009/05/hadoop-should-target-cllvm-not-java.html
Sunday, May 10, 2009
Hadoop should target C++/LLVM, not Java (because of watts)
< type="text/javascript">
digg_url="http://www.trendcaller.com/2009/05/hadoop-should-target-cllvm-not-java.html";
Over the years, ......
原帖:
http://hi.baidu.com/pepsi360/blog/item/cc74be4412cf6789b3b7dcd4.html
#include <stdio.h>
struct Node
{
int a;
char b[10];
Node *next;
};
main(void)
{
char *p=NUL ......
当你买了台新电脑时,觉得性能,速度,你都比较满意,但是随着时间推移,你觉得你C盘空间越来越小,速度也降下了,那我们该怎么办呢?
对于菜鸟来说,有一点你必须注意:当你下载东西,有些网站是默认C盘,这时可以选择下载盘时,最好放在其他盘里,不可以选择也没办法,C盘里的文件也是病毒喜欢 ......
程序开头要声明
#include <string.h>
函数名: stpcpy
功 能: 拷贝一个字符串到另一个
用 法: char *stpcpy(char *destin, char *source);
程序例:
#include <stdio.h>
#include <string.h>
int main(void)
{
char string[10];
char *str1 = "abcdefghi";
&n ......