Hi,

I'm just wondering about defining const pointers and if there's a difference in C and D.

in C, this works:

const char* text = "Hello";
text = "world";

but in D it doesn't, because the char* is const. Ff I would like tho have the same behaviour in D as in C, I need to write:

const (char)* text = "Hello";
text = "world";

In C, this would not be valid. So the question for me now is: is const char* in D different from C?

Reply via email to