How do you write algorithm of Program in C to print hello 10 times?

1 answer

Answer

1232067

2026-08-01 12:10

+ Follow

#include<stdio.h>

int main()

{

int i;

for(i=0; i<10; i++)

{

printf("Hello Sok Sabay\n");

}

}

ReportLike(0ShareFavorite

Copyright © 2026 eLLeNow.com All Rights Reserved.