#include <iostream> int main() { std::cout << "Hello" << std::endl; //endl = end line/new line // or printf("hello"); }
char greeting[6] = {'H', 'e', 'l', 'l', 'o', ' '};