Skip to content

The Beginning

Posted on:January 30, 2023 at 09:26 PM

Hi there my name is Nick I am a software developer and started this blog to document my journey kind of.

Here are some Hello World programs in different programming languages…

C++

#include <iostream>
using std;

int main(int argc, char** argv){
    cout << "Hello World!" << endl;
    return 0;
}

C

#include <stdio.h>

int main(int argc, char** argv){
    printf("Hello World!\n");
    return 0;
}

Python

print("Hello World!")

Javascript

console.log("Hello World!");