Blame view

liens/tas.c 169 Bytes
b3e78c20   Pierre Cwik   ajout 27 mai
1
2
3
4
5
6
7
8
9
10
11
  #include <unistd.h>
  #include <stdio.h>
  #include <stdlib.h>
  
  int main()
  {
    int *tab=malloc(50);
    printf("%p \n (%d)",tab,(int)sizeof(tab));
    sleep(30);
    return 0;
  }