1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
// This is from the 11/5/2016 exam review session and was not used in lecture on 11/4/2016.

/* vim: set tabstop=4 shiftwidth=4 fileencoding=utf-8 noexpandtab: */
#include <stdio.h>
#include <stdlib.h>

int main(int argc, char *argv[]) {
    
    char* s = malloc(sizeof(*s) * 3);

    s[0] = 'Y';
    s[1] = 'o';
    s[2] = '!';
    s[3] = '\0';

    printf(s);

    free(s);

    return EXIT_SUCCESS;
}

© Copyright 2016 Alexander J. Quinn         This content is protected and may not be shared, uploaded, or distributed.