Try looking at the following alternative notation, and see if it makes more sense: #include <stdio.h> #include <stdlib.h> void fn(char* c) { printf("[%c]\n", *c); } int main() { char* c; c = malloc(…
Try looking at the following alternative notation, and see if it makes more sense: #include <stdio.h> #include <stdlib.h> void fn(char* c) { printf("[%c]\n", *c); } int main() { char* c; c = malloc(…