/*
This is the second lab of Lab EE107
The purpose of this lab is to understand the variable and the printf 
datatypes
The purpose is to create the code and free of syntax and grammatical errors
Author: Ekwegbalum Unachukwu
Star ID:do2170dt
Date: Jan 23, 2024.
    */
#include <stdio.h>

int main() {
    //Declare variables
    int value1_EEU, value2_EEU, sum_EEU;
    //Assign values and calculate their sum.
    value1_EEU = 60;
    value2_EEU = 35;
    sum_EEU = value1_EEU + value2_EEU;
    //Display the result
    printf("The sum_EEU of %i and %i is %i!\n", value1_EEU, value2_EEU, sum_EEU);//printing out the values and sum with %i
    return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: