TNX ASMGURU !!! You RULE !!!
BELOW is my own code i based it on what you helped me... tnx a lot.. try my code in Turbo C 2.01 pls and give a comment if it works !!! i'll wait tnx again
#include<stdio.h>
main()
{
int num1,num2,sum;
clrscr();
gotoxy(1,2);
printf("Enter no.1:");
gotoxy(1,3);
printf("Enter no.2:");
gotoxy(1,4);
printf("Their sum is:");
gotoxy(13,2);
scanf("%d",&num1);
gotoxy(13,3);
scanf("%d",&num2);
gotoxy(15,4);
sum=num1+num2;
printf("%d",sum);
getche();
}