struct complex{ struct complex *x1; struct complex *x2; struct complex *x2; };
struct complex { // struct members double realPart; double imaginaryPart; }; void Foo() { struct complex x1; struct complex x2; struct complex x3; }
struct COMPLEX x1; struct COMPLEX x2; struct COMPLEX x3;
struct COMPLEX{ double real; double imaginary; };
COMPLEX x1; COMPLEX x2; COMPLEX x3;
typedef struct _COMPLEX_{ double real; double imaginary; } COMPLEX;
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)