#include<stdio.h> #include <stdlib.h> #include <conio.h> int main() { int i,j; int *p; for(i=0;i<10;i++) { p=(int *)malloc(sizeof(int)); j=(int)p; printf("%d ",j%100); //free(p);//加上free又是一个定值。 } getch(); return 0; }