#include <stdio.h>

int main()
{
  // Loop never stops
  for (float i = 0; i != 0.3; i += 0.1)
  {
    printf("\ni = %f", i);
  }

  return 0;
};