C++
C++ is a general-purpose, object-oriented, and strongly typed programming language that emphasizes power and performance. C++ is defined by the JTC1/SC22/WG21 committee (or simply WG21) and implemented by multiple companies, most of which have membership WG21.
Hello World in C++
#include <iostream>
int main()
{
std::cout << "Hello World!" << std::endl;
}
C++ Resources
Deeper Knowledge on C++
Arduino Programming
Knowledge about programming Arduino boards
Broader Topics Related to C++
Computer Languages
Computer Languages: How humans tell computers what to do