Computer Science, asked by ahnafabid, 2 months ago

Fill in the blanks to print "C language" to
the screen 3 times using the for loop:
#include<stdio.h>
int main()
{
for (int i = 0; i
3; i++)
{
printf ("C Language");
}
return;

Answers

Answered by atrs7391
0

#include<stdio.h>

int main()

{

for (int i = 0; i  < 3; i++)

{

printf ("C Language");

}

return;

Answer is: <

Similar questions