print "hello world" ten thousand times

PHOTO EMBED

Thu Apr 27 2023 17:02:33 GMT+0000 (Coordinated Universal Time)

Saved by @Tarunkumar #c++

// C++ code
#include<iostream>
using namespace std;

int main(){
        for(int i=0 ; i<10000 ; i=i +1){

                cout<<"hello world"<<endl;

    }
    return 0;
}
content_copyCOPY