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.
Login
Login
OnlineGDB Q&A
Questions
Unanswered
Tags
Ask a Question
Ask a Question
How to printf many times with for?
0
votes
asked
Jan 1, 2020
by
Teepisit Sintukhate
(
210
points)
Please
log in
or register to answer this question.
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,"################");
}
}
Please
log in
or register to add a comment.
0
votes
answered
Jan 2, 2020
by
bhoomi2000
(
780
points)
write printf statement in for loop
Please
log in
or register to add a comment.
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;
}
Please
log in
or register to add a comment.
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and receive answers from other members of the community.
...