1 2 3 4 5 6 7 8 9 10 11 12
// Your guess is as good as mine. Possibly something to do with GNU Getline though... #include<stdio.h> #include<stdlib.h> int main (int argc, char *argv[]) { char **string; string = malloc(100) *string = "test"; printf("%s", **string); }