Hello, World!

Posted on Sep 6, 2021

Welcome! I know there are many blogs on the internet and this is one more. My idea is not to replace any existing solution, but to provide my point of view, share problems and solutions, and hopefully, it can be useful for you and me. I’ll also use it to document my stuff as I can’t remember everything I’d like to.

C

#include <stdio.h>

int main(void)
{
    printf("Hello, World!\n");
}

C++

#include <iostream>

int main()
{
    std::cout << "Hello, World!" << std::endl;
    return 0;
}

Python

print("Hello, World!")

References

1 - “Hello, World!” program

2 - C (programming language)

3 - C++

4 - Python (programming language)