Mouse Cursor

Welcome To Mani Mishra Tips and Tricks


Visiters

Template Information

Mani Mishra Tips and Tricks

Background Song


IP Address Finder 3
  ------------------------------------------------- ****** ------------------------------------------------- 

Wednesday, August 22, 2012

Write a Program to Add Two Numbers in C language

Welcome To Mani Mishra Tips And Tricks Answer : #include<stdio.h> #include<conio.h> main() { int a, b, c;   printf("Enter two numbers to add\n"); scanf("%d%d",&a,&b);   ...