Can anyone help me?
I am new to C++ and I need to do the following:
create struct
create text file
open text file
read a string (; separated)
slice into array
create linked list
put the read data into the list
I started with the struct as follows:
struct HB_field{
char HB_fname[25];
char HB_type[2];
int HB_size;
bool HB_null;
bool HB_index;
char HB_default;
};
Any help is highly appreciated.
I am new to C++ and I need to do the following:
create struct
create text file
open text file
read a string (; separated)
slice into array
create linked list
put the read data into the list
I started with the struct as follows:
struct HB_field{
char HB_fname[25];
char HB_type[2];
int HB_size;
bool HB_null;
bool HB_index;
char HB_default;
};
Any help is highly appreciated.