Jump to content

Parry Hotter

VIP
  • Posts

    1
  • Joined

  • Last visited

About Parry Hotter

Personal Information

  • Gender
    Male

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Parry Hotter's Achievements

  1. #include <iostream> #include <string> using namespace std; int main() { string s1 = "parry"; string s2 = "hotter"; string s = s1 + " " + s2; for (int i = 0; i < s.size(); i++) { cout << s[i] << endl; } return 0; }
×
×
  • Create New...