/*
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() {
    int sum_EEU;
    sum_EEU = 60 + 35; //assigned the sum of two numbers to variable sum_EEU.
    printf("the sum fo 60 + 35 is %i\n", sum_EEU); //prints out the sum assigned under sum_EEU.
    return 0;
}

Embed on website

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