2007-11-17から1日間の記事一覧

ファイルサイズを取得し、ファイルサイズを変更する

vc

ファイルサイズを取得する関数はCの標準にあるのかないのか良く分からん・・・。 // crt_chsize.c // This program uses _filelength to report the size // of a file before and after modifying it with _chsize. #include <io.h> #include <fcntl.h> #include <sys/types.h> #include <sys/stat.h></sys/stat.h></sys/types.h></fcntl.h></io.h>…

キューを使ってみる

c++

ちょっとSTLでキューを扱ってみた。テンプレートを使っているから、intだろうが任意のクラスだろうがいけるっぽい。 #include <queue> #include <iostream> int main() { int i; using namespace std; queue<int> qu; // int型のキュー // 要素のプッシュとポップ qu.push(10); qu.</int></iostream></queue>…