Why for loop does not run by other than int variables? I tried to run for loop by taking float variable but it does not run by any other variables than int type?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can use a for loop with integer variables, floating-point variables, even no variables at all.
But see What Every Computer Scientist Should Know About Float-Point Arithmetic for why you should think twice before using example 2.