Use malloc and calloc to dynamically allocate memory. 1-Create a new source file named task1.c. Add a main function and #include the stdio.h and stdlib.h system libraries. 2. Inside the main function, declare a dynamic array with space for 5 integers. The malloc function has the void *malloc (size t size) so you will need to pass in a suitable size as an argument. The size is expected as the number of bytes, so 5 by
OR
OR