/* malloc.c */ #include <stdlib.h> int main(char* argv[], int argc) { char* testString = malloc(sizeof(char) * 10); }