This program is about print the given value up to the limits using For Loop in C
#include<stdio.h> int main() { int n,i; printf("\nEnter the limit:"); scanf("%d",&n); for(i=1;i<=n;i++) { printf("\nHai"); } return 0; }To download raw file Click Here
Enter the Limit : 5 Hai Hai Hai Hai Hai
Learn All in Tamil © Designed & Developed By Tutor Joes