Hey there 👋, I
  • #include "programmer.h"
  • class Charles : programmer {
  • public:
  • int gpa;
  • string school;
  • string[] languages;
  • string[] skills;
  • Charles(){
  • gpa = 3.97;
  • school = "Mississippi State University";
  • languages = [
  • "C++""C""C#""SQL""Kotlin""Javascript""html""css""Python""shell""assembly""xml""Java"
  • ]
  • skills = [
  • "web development""android apps""WPF applications""data structures""Javascript animation""problem sloving""and many more to come..."
  • ]
  • }
  • bool workHard(int coffeCups);
  • int learn(string subject);
  • private:
  • string favorite food = "Tikka Masala";
  • int relaxation_time = 12;
  • string[] hobbies = [
  • "programming""microscopy""rock climbing""camping"
  • ]
  • bool enjoyingLife = true;
  • }