Which type of loop is commonly used to iterate through an array in C?

Which type of loop is commonly used to iterate through an array in C?

کس قسم کا لوپ عام طور پر سی میں ایک صف کے ذریعے تکرار کرنے کے لیے استعمال ہوتا ہے؟
Explanation
  • In C, the For loop is commonly used to iterate through an array because it allows for easy initialization, condition checking, and incrementing/decrementing of the loop counter.
  • The syntax of a For loop is designed to handle array indexing and iteration naturally.