c program to add code example

Example 1: c program to add two numbers

#include <stdio.h>
int main() {    

    int number1, number2, sum;
    
    printf("Enter two integers: ");
    scanf("%d %d", &number1, &number2);

    // calculating sum
    sum = number1 + number2;      
    
    printf("%d + %d = %d", number1, number2, sum);
    return 0;
}

Example 2: c list add element

// Create a list  
List<string> AuthorList = new List<string>();  
  
// Add items using Add method   
AuthorList.Add("Mahesh Chand");

Example 3: addition of two numbers in c

int num1,num2;
printf("%d",num1+num2);

Example 4: how to add comment in c

A comment in C starts with
/*
This is a comment, it ends with
*/

Tags:

Misc Example