fork download
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. int main()
  4. {
  5. string dic[] = {"hello ","india","go"};
  6. for(auto &i:dic){
  7. cout<<i<<endl;
  8. }
  9. }
Success #stdin #stdout 0s 4540KB
stdin
Standard input is empty
stdout
hello 
india
go