Tuesday, March 24, 2009


My autobiography
#include
#include
#define p printf
#define s scanf


main()

{

clrscr();

textcolor(RED);gotoxy(35,1);
p("My Autobiography");
gotoxy(29,2);
cprintf("My name is Arthur Ray A. Ochada ");
gotoxy(20,3);
cprintf("I live in 22-056 Lanzona subd. Calinan Davao City");
gotoxy(15,4);
cprintf("I was born on October 24,1991 in Limso Hospital in Davao City");
gotoxy(24,9);
p("My mother's name is Angelita A. Ochada");
gotoxy(25,10);
p("My father's name is Arturo N. Ochada");
gotoxy(28,11);
p("I have 5 sisters and 1 brother");

getch();


}