发布时间:2014-03-13 17:30:06
在我的学习过程中,从文件读取数据是一件很麻烦的事,所幸有sscanf()函数。 C语言函数sscanf()的用法sscanf() - 从一个字符串中读进与指定格式相符的数据. 函数原型: int sscanf( string str, string fmt, mixed var1, mixed var2 ... ); int scanf( const char *format [,argument]............【阅读全文】
发布时间:2014-01-02 14:52:46
http://c.chinaitlab.com/special/xxjx/Index.htmlC++ list中erase和remove函数的用法分类: C/C++ 2013-03-24 19:49 731人阅读 评论(0) 收藏 举报erase的作用是,使作为参数的迭代器失效,并返回指向该迭代器下一参数的迭代器。如下:[cpp] view plaincopylist ParticleSystem; list::itera.........【阅读全文】
发布时间:2013-12-02 10:52:43
1. ./bootstrap.sh --with-toolset=mingw --prefix=/c/mingw2. Edit the file project-config.jam and replace 'mingw' by 'gcc'3. ./bjam && bjam install......【阅读全文】