answersLogoWhite

0

What sum is the sum of a and d?

Updated: 12/19/2022
User Avatar

Wiki User

13y ago

Best Answer

Unless the values of the things will no be know things, then the sum will also not be known

User Avatar

Asim Ahmed

Lvl 7
2y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

13y ago

The sum of a and d is a + d

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What sum is the sum of a and d?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the sum of d and 7?

the sum means to add so its d+7


What is the sum of a plus d?

a + d


What is the sum of eighteen and d?

18 + d


What is the Sum of d and f?

d + f.


What is the roman sum D plus D?

D + D = M


Write an c program of addition of two values?

#include<stdio.h> #include<conio.h> main() { int a,b,sum=0; clrscr(); printf("Enter two variable:--"); scanf("%d%d",&a,&b); sum=a+b; printf("Sum of %d+%d=%d",a,b,sum); getch(); }


What is the roman numerals sum of D-D?

nihil


Write a c program as an example for call by value and call by reference?

#include<stdio.h> #include,conio.h> void main() int a,b,d; pintf("enter the number"); scanf("%d%d",&a,&b); d=add(a,b); pintf("sum=%d",d); } add(a,b) { int sum; sum=a+b; return (sum); getch(0; }


C program to find sum of 'n' number using function?

void main () { int no1, sum, n; clrscr() sum = 0; n = 1; printf("\n enter the number to which sum is to be generated"); scanf("%d",&no1); while(n<=no1) { sum=sum+n; n=n+1 } printf("\n the sum of %d = %d, no1, sum"); getch (); }


Sum of digits?

# include <stdio.h> main() { int num,count,sum; count=0; sum=0; printf("enter an integer :"); scanf("%d",&num); printf("ur num is : %d \n",num); while (num!=0) { count++; sum+=num%10; num/=10; } printf("sum of the digits is : %d",sum); }


Calculate sum of three number in c program?

it's simple: { int a,b,c,d; printf("enter the numbers"); scanf("%d %d %d" &a &b &c); d=a+b+c; printf("the sum is=%d" d); }


Write a C program for Sum of factors of a number?

#include<stdio.h> #include<conio.h> void factor(int num) { int i,sum=0; for(i=1;i<num;i++) { if(num%i==0) { sum=sum+i; } } printf("Sum of the factor of %d is %d",num,sum); } void main() { int num; printf("Enter the number="); scanf("%d",&num); factor(num); getch(); }