333 B
333 B
created, course, topic, related, type, status, tags
| created | course | topic | related | type | status | tags | |
|---|---|---|---|---|---|---|---|
| 2026-04-16 08:01 | lecture | 🔴 |
|
📌 Summary
[!abstract]
📝 Content
Classes
C approach of defining a Pokemon:
typedef struct {
int exp;
int attack;
unsigned int hp;
char name[];
} Pokemon;
class Pokemon() {
}