k13th143
- 1
- 0
guys can u help me how ta make a structure in DEV C++ ? the all information i need thanks guys :)
k13th143 said:guys can u help me how ta make a structure in DEV C++ ? the all information i need thanks guys :)
struct MyDataStructure
{
int a;
int b;
int c;
};
You can also use typedef statements but the basic idea is there.