दो संख्याओं को जोड़ने का एक प्रोग्राम संख्याओं को लेता है और उनका गणितीय योग करता है और इसे दूसरे चर को देता है जो इसके योग को संग्रहीत करता है।
उदाहरण कोड
#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