hi!
I have a problem about "range of data types ".I work on program that
require long digits .in "boland c++ 5.2 's help" range of long is 4294967295 .
but why this sample program doesn't work??!!
int main(){
long a=4294967295,b;
b=a;
return 0;
}
CAN YOU HELP ME?
TNX.