#include <malloc.h> #include <stdio.h> void main() { int n = 0; scanf("%d",&n); int *p = (int *)malloc(n*sizeof(int)); return ; }