|
|
| Project | Description | Tech Stack | Link |
|---|---|---|---|
| π Bank System & Currency Exchange | Brief description of your project and what it does. | C++, OOP |
https://github.com/AbooodGh/Bank_System |
| π¦ Data Structure Lib | Implementation of various data structures. | C++ , OOP |
https://github.com/AbooodGh/Data_Structure |
| π» System App | Windows Forms application for management. | .NET, C# |
View Project |
#include <iostream>
#include <string>
class AbdAlRahman {
public:
std::string role = "Software Engineering Student";
std::string university = "Al-Azhar University";
void getStatus() {
std::cout << "Focusing on Problem Solving & OOP." << std::endl;
std::cout << "Building my way to be a Professional Developer." << std::endl;
}
};
int main() {
AbdAlRahman me;
me.getStatus();
return 0;
}