Computer >> Máy Tính >  >> Lập trình >> lập trình C

C Chương trình cộng hai số nguyên

Một chương trình để cộng hai số vào các số và tính tổng toán học của chúng và đưa nó vào một biến khác lưu trữ tổng của nó.

Mã mẫu

#include <stdio.h>
int main(void) {
   int a = 545;
   int b = 123;
   printf("The first number is %d and the second number is %d \n", a , b);
   int sum = a + b;
   printf("The sum of two numbers is %d" , sum);
   return 0;
}

Đầu ra

The first number is 545 and the second number is 123
The sum of two numbers is 668