{}
See how a CS professor is using our compiler for class assignment.
Try Programiz PRO for Educators!
Learn DSA with step-by-step code visualization.
Try Programiz PRO for Educators!
run-icon
main.cpp
#include <iostream> int main() { const std::string Name = "AK"; const std::string currentFocus = "DDoS Mitigation and Detection"; const std::string hehe = "AK's Cupcake Factory"; std::cout << "*************************************************************" << std::endl; std::cout << "******************** " << hehe << " *******************" << std::endl; std::cout << "*************************************************************" << std::endl; std::cout << "🎉 Welcome to my uh repo place!" << std::endl; std::cout << "🔥 I'm " << Name << ", a very good yesyes developer." << std::endl; std::cout << "🔍 Currently focusing on " << currentFocus << "."<< std::endl; std::cout << "hmu if you want to work on something" << std::endl; return 0; }
Output