E

@Ekwegbalum_Unachukwu_MNSU_EDU

HW 1 for Ch 3_4 E.Unachukwu

C
2 years ago
#include <stdio.h> int main() { // Declare variables to store Fahrenheit and Celsius temperatures float fahrenheit, celsius; // Assign the Fahrenheit temperature to the variable fahrenheit = 27.0;

Lab 4_4_E.Unachukwu

C
2 years ago
/* This is the third lab of Lab EE107 The purpose of this lab is to understand the difference in storage for typecasts and the basic datatype conversions in C The purpose is to create the code and free of syntax and grammatical errors Author: Ekwegbalum Unachukwu Star ID:do2170dt Date: Feb 6, 2024. */ #include <stdio.h>

Lab 4_3 E.Unachukwu

C
2 years ago
/* This is the fourth lab of Lab EE107 The purpose of this lab is to understand the difference between pre-increment and post increment The purpose is to create the code and free of syntax and grammatical errors Author: Ekwegbalum Unachukwu Star ID:do2170dt Date: Feb 6, 2024. */ #include <stdio.h>

Lab 4_2 E.Unachukwu

C
2 years ago
/* This is the fourth lab of Lab EE107 The purpose of this lab is to determine the double and integers results The purpose is to create the code and free of syntax and grammatical errors Author: Ekwegbalum Unachukwu Star ID:do2170dt Date: Feb 6, 2024. */ #include <stdio.h> int main() {

Lab4_1 E.Unachukwu

C
2 years ago
/* This is the fourth lab of Lab EE107 The purpose of this lab is to Evaluate and The purpose is to create the code and free of syntax and grammatical errors Author: Ekwegbalum Unachukwu Star ID:do2170dt Date: Feb 6, 2024. */ #include <stdio.h>

Lab3_1 E.Unachukwu

C
2 years ago
/* This is the third lab of Lab EE107 The purpose of this lab is to illustrate the various use of these operators and understand the order of precedence The purpose is to create the code and free of syntax and grammatical errors Author: Ekwegbalum Unachukwu Star ID:do2170dt Date: Jan 30, 2024. */ #include <stdio.h>

Lab3_2 E.Unachukwu

C
2 years ago
/* This is the second lab of Lab EE107 The purpose of this lab is to understand the convert alphanumeric to ascii code, and ascii code to alphanumeric The purpose is to create the code and free of syntax and grammatical errors Author: Ekwegbalum Unachukwu Star ID:do2170dt Date: Jan 30, 2024. */ #include <stdio.h>

Lab2_Appenidices Ekwegbalum Unachukwu

C
2 years ago
/* This is the second lab of Lab EE107 The purpose of this lab is to understand the convert alphanumeric to ascii code, and ascii code to alphanumeric 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>

Lab2_3 E.E Unachukwu

C
2 years ago
/* 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. */ /* display the basic types variables of C */

Lab2_2 E.E Unachukwu

C
2 years ago
/* 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>

Lab2_1

C
2 years ago
/* 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>

Lab 1_2 E.Unachukwu

C
2 years ago
#include <stdio.h> int main (void) { printf ("Testing...\n..1\n...2\n....3\n"); // ..\n creates a new line return 0; }

Lab 1_1 by E.Unachukwu

C
2 years ago
#include <stdio.h> int main (void) { printf ("Programming is fun.\n"); //The printf is argument for output of the string. printf ("And Programming C is even more fun.\n"); // \n signifies a new line. return 0; }