this is the code to added an input number from keyboard : .MODEL SMALL .DATA MSGA DB 13,10,"Input first number: ","$&quo...
Read More
Menu on Assembly
Code to create menu on assembly. Menu.ASM : INCLUDE PUSTAKA.MCR .MODEL SMALL .CODE ORG 100h Mulai : JMP Proses Kal0 DB ...
Read More
Tutorial InstallShield
download sample disini http://www.4shared.com/office/2DzFJY74/PembuatanSetupInstallationDelp.html http://www.4shared.com/zip/ljbfnmvt/dede...
Read More
How to using "IF" in c++
"If" is usually used to returns one value if a specified condition evaluates to TRUE, or another value if it evaluates to FALSE...
Read More
Create Menu in C++ using Do, Switch.. Case
This is the code to create menu in c++. You can create menu using do and switch..case : #include <iostream.h> #include <conio.h&...
Read More
Switch..Case C++ example
This is how the switch..case in c++ work : #include <iostream.h> #include <conio.h> void main(){ int nilai; cout<...
Read More
Automatically retweet another twitter account using Sendible
The steps below explain how to configure the Automatic Twitter Retweet service in Sendible. 1. Sign into your Sendible account and click o...
Read More
Pointer in c++
Example : #include <iostream.h> #include <conio.h> void main(){ int a=35; int *pa; pa=&a; cout<<"Nilai ...
Read More
Count the volume of a cone with pointer in c++
code for counting the volume of a cone with pointer in c++ #include <conio.h> #include <iostream.h> #include <math.h> vo...
Read More
Supermarket in c++
Supermarket, cashier , teller or program kasir in indonesian application code in c++ : #include "iostream.h" #include "stri...
Read More
Multiple of Matrix in c++ (perkalian matriks)
A simple code to multiple matrix in c++ : #include <iostream.h> #include <conio.h> #include <iomanip.h> void main() ...
Read More
Select Menu in c++
Here is the example to create menu in c++. #include <iostream.h> #include <conio.h> void main() { int pilihan; float ptx,...
Read More
What's the purpose of the LEA instruction?
As others have pointed out, LEA (load effective address) is often used as a "trick" to do certain computations, but that's ...
Read More
Difference between lea and offset on Assembly
Look at this : ar db "Defference $" mov dl,offset ar and lea dl,ar Both of them are doing same work but they're has ...
Read More
Squares Macro on Assembly
Just simple way to create a macro for squares operation : Squares MACRO a MOV AX,a MUL a endm and...
Read More
JavaScript : Addition and multiple of two numbers
code : <html> <head> <title>Type Bilangan</title> </head> <body bgcolor="aqua"> ...
Read More
JavaScript : Addition and multiple of two numbers
code : <html> <head> <title>Type Bilangan</title> </head> <body bgcolor="aqua"> ...
Read More
Text Inverting c++ (Pembalik Teks)
code for inverting text : #include<iostream.h> #include<conio.h> char a[100]; int b,c,d; void main() { cout<<&quo...
Read More
Money to text Conversion (Konversi rupiah ke teks)
Here is the code for conversion from money values to text. #include "iostream.h" #include "conio.h" void main() { ...
Read More
Switch and Case in c++
oh yea to create option on c++ we can use this function. swicth and case in c++ is just like case..of in pascal and php i think. here is the...
Read More
Rental CD in c++
enjoy :) #include <iostream.h> #include <conio.h> class CDSys { }; int main() { char petugas[30]; int balik; int a,b,...
Read More
Struct Example in c++
hey, i want to share an example about using strunct in c++. this is my code : #include <iostream.h> #include <conio.h> voi...
Read More
Structs in C++
There are many instances in programming where we need more than one variable in order to represent something. For example, to represent y...
Read More
WordPress Backups and Restores Made Easy with BlogVault
orignally written by Michael Kwan on December 12, 2012 Most people would agree that backing up your data is probably a good idea. Maybe ...
Read More
FAST INSTALL ZEOS ACCESS ON BORLAND DELPHI 7
This is a express way to install Zeos Access on your Borland Delphi 7 : 1. Download Zeos Access (File BPL , File DCU , File LIB )...
Read More
The Different Uses of Looping
1. For Do ( Looping without clause ) For do is a looping structure that will perform a loop as much as counter of looping . the counter ca...
Read More
How to create "Input and Output" Text via keyboard on assembly
You can create some data input and print your input via keyboard. Write your code like this : .model small .code org 100h mulai: ...
Read More
Macro on Assembly
Code for macro.asm INCLUDE PUSTAKA.MCR .MODEL SMALL .CODE ORG 100h Mulai : JMP Proses Kal0 DB 13,10,'CONTOH CETAK KA...
Read More
Subscribe to:
Posts (Atom)