- ๐ 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>
using namespace std;
class WaelSamer
{
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";
};
int main()
{
WaelSamer Developer;
cout << "Turning ideas into code..." << endl;
return 0;
}


