+ 1
focus on programming... what is the problem of this code?
double* realPtr; long* integerPtr; integerPtr = realPtr;
4 Antworten
+ 1
in this question we have to cast double* to long*...
what we have to do is:
integerPtr = (long*) realPtr;
enjoy casting :)
0
@mahmood which language?
0
c++
0
different type error