aboutsummaryrefslogtreecommitdiffstats
path: root/getline-test.c
blob: 7eb8457e7ae33ba96ea4f7c256abbc15e384d2ca (plain)
1
2
3
4
5
6
7
8
9
10
11
#include<stdio.h>
#include<stdlib.h>

int main (int argc, char *argv[]) {
    char **string;

    string = malloc(100)
    *string = "test";

    printf("%s", **string);
}