fork download
  1. int main()
  2. {
  3. int i, n = 8;
  4. for (i = 1; i <= n; i++) {
  5. cout << "Hello World !!!\n";
  6. }
  7. return 0;
  8. }
Success #stdin #stdout 0.02s 25660KB
stdin
Standard input is empty
stdout
int main()
{
int i, n = 8;
for (i = 1; i <= n; i++) {
cout << "Hello World !!!\n";
}
return 0;
}