Type cast

Now is possible to use of the type cast operator of the C language in assignments:

  int i, var_i;
  float f;
    ...
  i = (int) 20/State;
  f = (float) var_i;



Guilherme Dutra Gonzaga Jaime 2010-10-27