char *a="this is a string";
char a[]="this is a string";
first is a pointer while second is an array.Tell me more differences
char a[]="this is a string";
first is a pointer while second is an array.Tell me more differences
Comment