Sei sulla pagina 1di 1

int main() {

printf("hello, world");
return 0;
}
1 int main(void) {
2 char *p;
3 p=(char *)malloc(5);
4 /* do stuff */
5 p=(char *)malloc(7);
6 free(p);
7 return 0;
8 }

Potrebbero piacerti anche