Sorry for a noobish question but I’ve stumbled upon some other person’s code and he is using i_tmp2 inside of a for loop. When is the i_tmp2 notation used?
Sorry for a noobish question but I’ve stumbled upon some other person’s code and
Share
i in i_tmp2 probably stands for ‘integer’, i.e. telling you it’s a variable used for storing whole numbers.
tmp2 in i_tmp2 probably just means it’s the second temporary variable created.