/* This is the thirteenth lab of Lab EE107
The purpose of this lab for interger pointer.
Creating the code and free of syntax and grammatical errors.
Author: Ekwegbalum Unachukwu
Star ID:do2170dt
Date: April 23rd, 2024.
*/
#include <stdio.h>
int main() {
// Declaration of variables
int count_EU = 10;
int *int_pointer_EU;
int_pointer_EU = &count_EU;
// Printing the address of the integer variable
printf("%p\n", int_pointer_EU);
// Printing the size of the integer pointer
printf("%li\n", sizeof(int_pointer_EU));
return 0;
}
To embed this project on your website, copy the following code and paste it into your website's HTML: