Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

How to calculate sum

Answer Posted / avinash jadhav

#include<stdio.h>
#include<conio.h>
#include<math.h>
void main()
{
int num1,num2,sum;
clrscr();
printf("\nEnter the 2 numbers\n");
scanf("%d%d",&a,&b);
sum=num1+num2;
printf("The sum of the two number is %d\n",sum);
getch();
}

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is meant by recursion?

1033


Not all reserved words are written in lowercase. TRUE or FALSE?

1217


Wt are the Buses in C Language

3197


if p is a string contained in a string?

1831


Explain how do you determine the length of a string value that was stored in a variable?

1141


What is the difference between formatted&unformatted i/o functions?

1044


What is the difference between exit() and _exit() function?

1021


Explain null pointer.

1091


What is the difference between printf and scanf in c?

1326


What are void pointers in c?

983


what is a function method?give example?

2350


Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as “****”.

3159


What is the use of pragma in embedded c?

1036


Can you explain the four storage classes in C?

1107


Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?

1116