D
deepak
Hello,
In the below program bcopy of 'b=c' is more preferable?
I would like to know the advantage one over other if any.
struct test {
int value;
};
struct test b;
struct test c;
main()
{
b.value = 100;
b = c;
}
Thanks,
Deepak
In the below program bcopy of 'b=c' is more preferable?
I would like to know the advantage one over other if any.
struct test {
int value;
};
struct test b;
struct test c;
main()
{
b.value = 100;
b = c;
}
Thanks,
Deepak