Stress impairs cognitive functions - The loss of those functions can explain why programming is hard 19 years ago
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( sizeof(char) );
*c = 'a';
printf("start\n");
fn(c);
return 0;
}
Regards,dclayton