Malloc in C is easy! 🏢
98.7K views on YouTube
#coding #programming #cprogramming
// malloc() = A function in C that dynamically allocates
// a specified number of bytes in memory
char *grades = malloc(number * sizeof(char));