int main(){
char* abc = "abcdefgh";
printf("%s", *(abc + 1));
return 0;
}
-----------------
I get a segmentation fault for this code in C, can someone tell me what's wrong, and how can I fix this =) Thank you.