Problems
Write a program that takes three integers as input and outputs their sum.
(Modified to fit the 10th edition of Self-Directed C Language.)
Example #1
20 50 100
sum = 170
Example #2
3 2 1
sum = 6
Source
자기주도C언어프로그래밍
Write a program that takes three integers as input and outputs their sum.
(Modified to fit the 10th edition of Self-Directed C Language.)
20 50 100
sum = 170
3 2 1
sum = 6