Ubuntu – Why malloc doesn't malloc?
Here's a C program to introduce the problem. #include <stdlib.h> #include <stdio.h> #include <math.h> int main(int argc, char *argv[]) { if(argc != 2) { printf("Provide a number to indicate the number of bytes (in Mega)n"); exit(8); } int num =…