2006-02-10から1日間の記事一覧

クラスを作る

#include #include typedef struct _Name { char *first; char *last; void (*getName)(void*, char*); } Name;void _getName(void *_this, char *name) { Name *this = _this; strcpy(name, this->first); strcat(name, ", "); strcat(name, this->last); }…