move exercises, lecture examples, labs into subfolders
This commit is contained in:
18
Exercises/C16/ex2.c
Normal file
18
Exercises/C16/ex2.c
Normal file
@@ -0,0 +1,18 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
int main(void)
|
||||
{
|
||||
// Declare an integer array and an integer pointer
|
||||
int *pData;
|
||||
int datlen;
|
||||
|
||||
printf("Length of data to be allocated: ");
|
||||
scanf("%d", &datlen);
|
||||
|
||||
// Using malloc
|
||||
pData = malloc ( datlen * sizeof (int));
|
||||
|
||||
free(pData);
|
||||
return 0; // Exit
|
||||
}
|
||||
Reference in New Issue
Block a user