Tag Archives: explained

Beginner Write your first Assembly Language program – Hello World!! [explained]

If you have just started learning Assembly language programming, here is a example Assembly program explained so that you can understand the very basic terminology before you write more complex Assembly Applications. First Assembly program simply prints a text message “Hello World” on Screen. [codesyntax lang=”asm”] DATA SEGMENT MESSAGE DB “HELLO WORLD!!!$” ENDS CODE SEGMENT ASSUME… Read More »

C000 Beginner Write your first C program – Hello World [explained]

If you have just started learning C programming language, here is a example C program explained so that you can understand the very basic terminology before you write more complex C Applications. First C Program simply prints a text message “Hello World” on Screen. [codesyntax lang=”c”] #include<stdio.h> void main() { printf(“Hello World”); getch(); } [/codesyntax] First… Read More »