k13th143
- 1
- 0
guys can u help me how ta make a structure in DEV C++ ? the all information i need thanks guys :)
To create a structure in DEV C++, use the standard C++ syntax for defining structures. An example structure is defined as follows: struct MyDataStructure { int a; int b; int c; };. This method is consistent across all C++ development environments, ensuring portability and familiarity for developers. Additionally, typedef statements can be utilized to simplify structure usage.
C++ developers, students learning programming, and anyone looking to implement data structures in DEV C++.
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.