#include #include #include void main() { int i,n; int *a,*b,*c; printf("How many Elements in each array...\n"); scanf("%d", &n); a = (int *) malloc(n*sizeof(int)); b = (int *) malloc(n*sizeof(int)); c =( int *) malloc(n*sizeof(int)); printf("Enter Elements of First List\n"); for (i=0;i