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