Ei kuvausta
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

malloc.c 120B

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