Respuesta :

Answer:

  • The SIZE constant is not defined
  • The variable i should be defined at the start of the function, not within the condition of the while loop
  • The main function returns no value.  Generally they should return a zero on success.
  • The printf text "%d" should actually be "%f".  %d treats the variable as though it's an integer.