double number =10.9
int a ;
a = (int)number ;a = int(number) ;
- what are the difference between int() and (int) to convert de type into int
- if i use my own class BASE ; BASE() ; (BASE) ; what the difference?which is faster or unexpensive(cheap)?
double number =10.9
int a ;
a = (int)number ;a = int(number) ;