Skip to content

Instantly share code, notes, and snippets.

View YohanesGetinet1's full-sized avatar
🇪🇹

Yohanes Getinet YohanesGetinet1

🇪🇹
View GitHub Profile
@YohanesGetinet1
YohanesGetinet1 / Pointer.c
Last active August 14, 2021 05:58 — forked from Impermenance-2021/Pointer.c
Day_0. Practice Code - Demonstration of Pointers
#include <stdio.h>
int main()
{
int num = 10;
int * ptr;
/* Stores the address of num to pointer type */
ptr = &num;