The essence of computer science, sending instructions to computer and request computer to execute for us, ever wonder how interesting it is?
Even though I have learned programming even before the first class started I still feel excited when I first wrote a program with zero syntax error and successfully compiled it.
#include <iostream>
using namespace std;
int main()
{
cout << "I love programming" << endl;
return 0;
}
#ProgrammingAwesome