C Program to Add Two Integers
Given two integers, the task is to add these integer numbers and return their sum.ExamplesInput: a = 5, b = 3Output: 8Explanation: The sum of 5 and 3 is 8.Input: a = -2, b = 7Output: 5Explanation: The sum of -2 and 7 is 5.In C, we have multiple methods to add two numbers, such as the addition operat