Hi all,
What is the difference between:
typedef struct
{
...
} MyS1;
....and...
typedef struct MyS2
{
...
} MyS2;
Could both of the cases be instantiated as follows?
MyS1 inst1;
MyS2 inst2;
Also, is the following possible...
struct MyS3{ ... };
MyS3 inst3;
Kind regards,
Werner
What is the difference between:
typedef struct
{
...
} MyS1;
....and...
typedef struct MyS2
{
...
} MyS2;
Could both of the cases be instantiated as follows?
MyS1 inst1;
MyS2 inst2;
Also, is the following possible...
struct MyS3{ ... };
MyS3 inst3;
Kind regards,
Werner
Comment