HomeC courses Program to print hello using For loop in C by Er.Sandesh Thakur -November 18, 2025 C Program: Print "Hello" 50 Times#include <stdio.h>int main() { for (int i = 0; i <= 50; i++) { printf("Hello\n"); } return 0;} Tags: C courses Facebook Twitter