Няма описание
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.

12345678
  1. /* intArray2.c */
  2. #include <stdlib.h>
  3. #include <stdio.h>
  4. int main(char* argv[], int argc) {
  5. int* intArray = malloc(100 * sizeof(int));
  6. free(intArray);
  7. printf("%d", intArray[10]);
  8. }