M
Michael
Hi there,
I've got a simple (newbee)-question.
Is the following thing right?
struct x {
int a;
int b;
}
...
struct x test1;
struct x test2;
[.. init test1 somehow]
test2 = test1
I think there is something in the FAQ, but
I'm not sure if I took it right. The above
code works with the compiler I'm using, but
I'm sure if this kind of statement is allowed.
Thanks for any help
Michael
I've got a simple (newbee)-question.
Is the following thing right?
struct x {
int a;
int b;
}
...
struct x test1;
struct x test2;
[.. init test1 somehow]
test2 = test1
I think there is something in the FAQ, but
I'm not sure if I took it right. The above
code works with the compiler I'm using, but
I'm sure if this kind of statement is allowed.
Thanks for any help
Michael