I am trying to get a better knowledge of C and I am currently writing and experimenting with different code snippets. The actual one is making me crazy because I have no idea what I need to change so it will work.
I want to store something into a struct as a char array, but when I want to read the stored char array, I always get a segmentation fault.
#include <stdio.h>
#include <stdlib.h>
struct connector {
char *subject;
};
int main() {
char *subject = NULL;
struct connector *conn;
subject = "TEE";
printf("%s\n", subject);
conn->subject = subject;
printf("%s\n", conn->subject);
return 0;
}
So why the second printf is having this problem ?