home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Jason Aller Floppy Collection
/
181.img
/
TASM-101.ZIP
/
PLUSONE.C
< prev
next >
Wrap
Text File
|
1988-10-31
|
282b
|
13 lines
#include <stdio.h>
int main(void)
{
int TestValue;
scanf("%d",&TestValue); /* get the value to increment*/
asm inc WORD PTR TestValue; /* increment it (inassembler) */
printf("%d",TestValue); /* print the incremented value */
}