About Me

My photo
Raipur, Chhattisgarh, India
Hi , I am Amit Thakur. I have worked as a QA Engineer for two years and as a Java Developer for one year in NIHILENT TECHNOLOGIES PVT. LTD., Pune.Currently I am working as DEAN (Research & Development) in Bhilai Institute of Technology, Raipur.

Wednesday, November 25, 2009

/* C-Prog for Addition of two Numbers*/

/*C-Prog*/
/* Prog for Addition of two Numbers*/
/*Written by:-Amit Thakur */
void main()
{
int num1=10,num2=20;
clrscr();
printf("Addition is %d",num1+num2);
getch();
}