Recent content by iroattoyou

  1. I

    [Programming - C] character generator for a game

    Context: Question: Code I have thusfar: #include <stdio.h> #include <stdlib.h> #include <time.h> #include <string.h> #define MAX_STAT enum { STR, DEX, INT, CON, WIS, CHA, LEVEL, MAX_STAT }; struct Character { int level; int class; int HP...
Back
Top