- 🎓 Software Engineering Student at Philadelphia University
- 💻 Learning C++ and Object-Oriented Programming (OOP)
- 🖥️ Developing interactive Console Applications
- 🚀 Passionate about improving coding skills and building projects
- C++ Programming
- Object-Oriented Programming (OOP)
- Console Application Development
- Software Design & Logic
- Problem Solving & Algorithms
#include<iostream>
#include<string>
#include<vector>usingnamespacestd;classWaelSamer
{
public:
string University = "Philadelphia University";
string Major = "Software Engineering";
string PrimaryLanguage = "Modern C++";
vector<string> CurrentlyLearning =
{
"C#",
"Windows Forms",
"Database Systems"
};
vector<string> Skills =
{
"Object-Oriented Programming",
"Data Structures",
"Console Applications",
"Software Design"
};
string Goal = "Professional Software Engineer";
};
intmain()
{
WaelSamer Developer;
cout << "Turning ideas into code..." << endl;
return0;
}



