To multiply two 16-Bit Numbers > Mixed Language Program Get link Facebook X Pinterest Email Other Apps September 27, 2015 To multiply two 16-Bit Numbers > Mixed Language Program Microprocessor Program: #include<stdio.h> #include<conio.h> void main() { int a,b,c; clrscr(); printf("Enter the first number :"); scanf("%d",&a); printf("Enter the second number :"); scanf("%d",&b); /* asm mov ax,a asm mov bx,b asm mul bx asm mov c,ax */ asm{ mov ax,a mov bx,b mul bx mov c,ax } printf("The Result Is :%d",c); getch(); } /* OUTPUT------------- Enter the first number :6 Enter the second number :3 The Result Is :18 */ Get link Facebook X Pinterest Email Other Apps Comments
Implement Client/Server using RPC > Java Program March 06, 2017 Implement Client/Server using RPC > Java Program Parallel and Distributed Systems View more »
Transposition Cipher Implementation > C Program February 03, 2017 Transposition Cipher Implementation > C Program Cryptography and System Security Program: #include<stdio.h> int check(int x,int y) { View more »
To implement Shift Reduce Parser > C Program March 08, 2016 To Implement Shift Reduce Parser > C Program System Programming and Compiler Construction Program: View more »
Comments
Post a Comment