Computer Science, asked by girl224, 8 months ago

write a program to to print the sum of 3 integer values ​

Answers

Answered by jangrasorav285
0

Explanation:

#include <stdio.h>......................

Answered by WasifRahman
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