C/C++でGC

Java野郎(私)が、C/C++でメンドイものの一つに、

「malloc()したらfree()しなきゃならん」というものがある。

大体、誰も参照しなくなった …

View comments.

more ...



独習C++ 改訂版日記2

というわけで、P.52 練習問題2.2 1.

#include
using namespace std;

class stack {
  char *stck;
  int tos;
  char who;
  int size;
public:
  stack(char c, int _size);
  void push(char ch);
  char pop();
};

stack::stack(char c, int _size)
{
  size = _size;
  stck …

View comments.

more ...




HPのMini-Note PC(2133)

HP 2133 Mini-Note PC ハイパフォーマンスモデル


Windows Vista Business(32bit)

VIA C7®-M ULV プロセッサ (1.6 GHz, 128 KB L2 cache, 800 MHz FSB)

メモリ2GB (2GB×1)

8.9インチワ …

View comments.

more ...