Logo 
Search:

C Programming Articles

Submit Article
Home » Articles » C Programming » Homework HelpRSS Feeds

Program to print name 25 times

Posted By: Birke Fischer     Category: C Programming     Views: 7524

Write a program to print name 25 times

Code for Program to print name 25 times in C Programming

#include<stdio.h>

void main()
{
    int count;

        for(count=1;count<=25;count++)
        {
            printf("my name is lord\n");
        }
}



========================================OUTPUT====================================
my name is lord
my name is lord
my name is lord
my name is lord
my name is lord
my name is lord
my name is lord
my name is lord
my name is lord
my name is lord
my name is lord
my name is lord
my name is lord
my name is lord
my name is lord
my name is lord
my name is lord
my name is lord
my name is lord
my name is lord
my name is lord
my name is lord
my name is lord
my name is lord
my name is lord
  
Share: 


Didn't find what you were looking for? Find more on Program to print name 25 times Or get search suggestion and latest updates.

Birke Fischer
Birke Fischer author of Program to print name 25 times is from Frankfurt, Germany.
 
View All Articles

Related Articles and Code:


 
Please enter your Comment

  • Comment should be atleast 30 Characters.
  • Please put code inside [Code] your code [/Code].

 
No Comment Found, Be the First to post comment!