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.

intArray1.c 159B

1234567
  1. /* intArray1.c */
  2. #include <stdlib.h>
  3. int main(char* argv[], int argc) {
  4. int* intArray = malloc(100 * sizeof(int));
  5. intArray[100] = 0;
  6. free(intArray);
  7. }