This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
C Language in one file | |
by RedToor - sep, 27' 2016 | |
C - gcc review.c -o review.o -fpermissive | |
X - ./review.o | |
*/ | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; 1) PROGRAM in ASM FOR 8086/x32 | |
; by RedToor | |
.MODEL SMALL | |
.STACK | |
.DATA | |
N1 DB 0 ; VARIABLE PARA ENTRADA 1 | |
N2 DB 0 ; VARIABLE PARA ENTRADA 2 | |
N3 DB 0 ; VARIABLE PARA RESULTADO |