Example of "Hello World" in Assembly language:
DATA SEGMENT
MSG DB "HELLO WORLD$"
DATA ENDS
CODE SEGMENT
ASSUME CS:CODE,DS:DATA
START: MOV AX,DATA
MOV DS,AX
MOV AH,09H
MOV DX,OFFSET MSG
INT 21H
MOV AH,4CH
INT 21H
CODE ENDS
END START
Example of "Hello World" in C:
#include <stdio.h>
#include <conio.h>
int main(void)
{
printf("Hello, world\n");
return EXIT_SUCCESS;
}
Example of "Hello World" in python:
print "hello world"
After looking into this small "Hello World" example and comparing with what all software we are developing today i can say "Writing code in machine language is similar to planning 1000 KM tunnel by using you nail”.
These are general issues we will face: