KRES

hardware, web and mobile hacks.

Hello World!

| Comments

This is my first post on this blog :D As we programers always do, I will start with a Hello World program!

1
2
3
4
5
6
7
#include<stdio.h>

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

In some python now

1
print "Hello World"

yes, I just could not leave out python!

Comments