boost

boost はC言語のライブラリ。

インストール:
cygwinで使う場合は、setup.exe (cygwinのインストール時に
使うソフト)からインストールできる。


テストプログラム (test.cpp)

#include <iostream>
#include <boost/format.hpp>
using namespace std;
int main(){
    cout << boost::format("%1% %2%") % "hello" % 100 << endl;

    return 0;
}


コンパイル

g++ test.cpp -I/usr/include/boost-1_33_1

http://nazy.s27.xrea.com/boost/index.shtml
http://www.kmonos.net/alang/boost/link.html
http://page.freett.com/shelarcy/programm/Nachschlagewerk/
http://kaosf.kirara.st/sb/log/eid27.html


http://boost.cppll.jp/HEAD/libs/graph/doc/table_of_contents.html