M
Mike Hodkin
Just out of curiosity, if a program uses a FLOAT type with a FOR loop
counter instead of an INT type, would this cause any slow-down in
performance or other problem (other than excess memory allocation for the
variable)?
eg.
float count; // instead of int count
for (count =1; count <=4, count++)
{
//code here
}
counter instead of an INT type, would this cause any slow-down in
performance or other problem (other than excess memory allocation for the
variable)?
eg.
float count; // instead of int count
for (count =1; count <=4, count++)
{
//code here
}