โปรแกรมสำหรับบวกตัวเลขสองตัวใช้กับตัวเลขและทำผลรวมทางคณิตศาสตร์และให้ตัวแปรอื่นที่เก็บผลรวมไว้
โค้ดตัวอย่าง
#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;
} ผลลัพธ์
The first number is 545 and the second number is 123 The sum of two numbers is 668