write a program to to print the sum of 3 integer values
Answers
Answered by
0
Explanation:
#include <stdio.h>......................
Answered by
0
Explanation:
In C programming.
#include<stdio.h>
int main()
{
int a, b, c, sum;
a=5,b=4,c=4;
sum=a+b+c;
printf("Summation= %d" ,sum);
getch();
}
Similar questions
English,
3 months ago
English,
8 months ago
Computer Science,
8 months ago
Math,
1 year ago
English,
1 year ago