Rants from a Computer Engineer

Hello World

This is my first post. So inorder to test out blogger I am going to post some hello world programs!

Java

1
2
3
4
5
public class Hello {
    public static void main(String args[]) {
        System.out.println("Hello World!");
    }
}

Python

1
print("Hello World!")

Php

1
echo "Hello World"

C++

1
2
3
4
5
6
7
#include <stdio.h>
using namespace std;
 
int main(void) {
    cout << "Hello World!" << endl;
    return 0;
}

C

1
2
3
4
5
#include "stdio.h"
int main(void) {
    printf("Hello World!");
    return 0;
}

Aren’t they beautiful! Many thanks to the SyntaxHighlighter which I will be using for code snippets that I post. More “meaningful” content coming soon!

Leave a comment

Your email address will not be published. Required fields are marked *