Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.

How to printf many times with for?

0 votes
asked Jan 1, 2020 by Teepisit Sintukhate (210 points)

3 Answers

0 votes
answered Jan 2, 2020 by Abhijit G
#include <stdio.h>

int main()
{
 char i=0;
for(i=0;i<10;i++)
    {
    printf("\n%.*s", 10,"################");
    }
}
0 votes
answered Jan 2, 2020 by bhoomi2000 (780 points)
write printf statement in for loop
0 votes
answered Jan 2, 2020 by anonymous
#include <stdio.h>

int main()
{
    
    int counter = 0;    //meaningful variable for loop
    
    for(counter = 0; counter < 10; counter++)   //loop until false. In this case, prints 10 times

{
        printf("  text/format specifier  ", variables if needed);
    }

    return 0;
}
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and and receive answers from other members of the community.
...