How to add two numbers with using function?
Answers were Sorted based on User's Feedback
Answer / anandi
#include<stdio.h>
#include<conio.h>
void main()
{
int add(int,int);
int a,b;
clrscr();
printf("Enter two numbers: ");
scanf("%d %d",&a,&b);
printf("The Sum is: %d",add(a,b));
getch();
}
int add(int x,int y)
{
return(x+y);
}
| Is This Answer Correct ? | 42 Yes | 14 No |
Answer / balaji
/*this program is used to add two numbers using functions */
#include<stdio.h>
#include<conio.h>
void add(int,int);
void main()
{
int x,y;
printf("enter the two digits/numbers which you want to add");
scanf("%d%d",&x,&y);
add(x,y);
getch();
}
void add(int a,int b)
{
int c;
c=a+b;
printf("the sum of %d and %d is %d",a,b,c);
}
| Is This Answer Correct ? | 5 Yes | 3 No |
Answer / sathish kumar .k
#include<stdio.h>
#include<conio.h>
void main()
{
int a,b,i;
int sum=0;
clrscr();
printf("Enter Two Nos");
scanf("%d%d",&a,&b);
for(i=0;i<a;i++)
sum=sum+1;
for(i=0;i<b;i++)
sum=sum+1;
printf("Sum:%d",sum);
getch();
}
| Is This Answer Correct ? | 18 Yes | 26 No |
this has been demonstrated by a simple program.......
in C we ourselves can write a function for addition and
include wherver we want to add numbers.....
1) first write the function definition for the function u
are gonna write for addition....in a new file
int addition_arthmetic(int a, int b)
{
return(a+b);
}
2) dont run or compile this , directly save this file in .c
extension.. let us say "add.c".
3) then open a new file and write the program for addition
by getting the 2 i/p from the user...
#inclue<stdio.h>
#include<conio.h>
#include "add.c" // we are including tthe file add.c"
void main()
{
int a,b,c;
printf("enter the values for a&b");
scanf("%d%d",&a,&b);
c=addition_arthmetic(a,b);// we call the function defined in
add.c
printf("\n\n the added value of a&b is :%d",c);
getch();
}
thank u
| Is This Answer Correct ? | 13 Yes | 24 No |
What is a example of a variable?
What is a global variable in c?
Hi how many types of software editions are there and their difference (like home editions, enterprise, standard etc) can u please help me
How do you sort filenames in a directory?
Can a file other than a .h file be included with #include?
Differentiate between the = symbol and == symbol?
number 2 plssssss help !!....using array.. turbo c.. create a program that will accept a number and determine if it is a happy number or an unhappy number.. example: enter a number : 7 7*7=49 then 4 and 9 4*4 and 9*9== 16 + 18 gives you 97 then 9 and 7 9*9 and 7*7 == 81 + 49 gives you 130 then 1 and 3 1*1 and 3*3 == 1 + 9 gives you 10 1*1 gives you 1 sample output: 7= 49= 16+81= 97= 81+49=130 =1+9=10 =1 "7 is a happy number" . if the last number is 2 then the number being inputed is not a happy number.
i want to know aptitude questions,technical questions
What is a scope resolution operator in c?
What is quick sort in c?
Write a program for finding factorial of a number.
To what value do nonglobal variables default? 1) auto 2) register 3) static