diff --git a/m3-oops-fundamentals-using-cpp/m3-code challenges - solution/m3-t2-e6.cpp b/m3-oops-fundamentals-using-cpp/m3-code challenges - solution/m3-t2-e6.cpp index cef7692..8062eeb 100644 --- a/m3-oops-fundamentals-using-cpp/m3-code challenges - solution/m3-t2-e6.cpp +++ b/m3-oops-fundamentals-using-cpp/m3-code challenges - solution/m3-t2-e6.cpp @@ -5,13 +5,13 @@ using namespace std; int main() { // Using \n - cout << "I am Sriyank Siddhartha.\nI am 26 years old."; + cout << "I am Achintya Sharma.\nI am 22 years old."; // Adding extra lines for clean output cout << endl << endl; // Using endl - cout << "I am Sriyank Siddhartha." << endl << "I am 26 years old."; + cout << "I am Achintya Sharma." << endl << "I am 22 years old."; return 0; }