Here is a simple C program to add two integers:
C Program to Add Two Integers
c
Copy
Edit
#include
variables: num1, num2, and sum.
Used scanf() to take input from the user.
Performed addition: sum = num1 + num2;
Displayed the result using printf(). https://docs.vultr.com/clang/examples/add-two-integers