In order to create a C++ file, you need a few things.

First, put all your #include statements at the top, outside of any classes or functions:

#include <iostream>
#include <string>
#include "pikachu.h"
 
using namespace std

Second, put your class headers (if in the same file):

class Player {
private:
    /* some variables */
public:
    /* some functions */
};

Third, put your function definitions:

int main(){
    /* some code */
}

Data sizes of variables:

TypeSize
bool1 byte
char1 byte
short2 bytes
int4 bytes
float4 bytes
long long8 bytes
double8 bytes