#include<stdio.h> #include<stdlib.h> main() {int *a,*b,*c; a=b=c=(int*)malloc(sizeof(int)); *a=1;*b=2;*c=3; a=b; printf("%d,%d,%d",*a,*b,*c); }