Thats agreed... whats the result in the following case. int *ptr= NULL; printf("%d",ptr); int *ptr; *ptr = NULL; printf("%d",ptr);
int *ptr = "NULL"; // Here is a statement int *ptr; // Here is a set of two statements *ptr = "NULL"; /* when you print the first...
Separate names with a comma.