compliteral.c
author Markus Bröker <mbroeker@largo.dyndns.tv>
Mon, 21 Jun 2010 21:58:00 +0200
changeset 136 d82f65e902d0
parent 108 d6a52e0152fb
child 140 05d42a3737a4
permissions -rw-r--r--
getdir errors: avoid unneeded memory leaks committer: Markus Bröker <mbroeker@largo.homelinux.org>

/**
 * Compont literals in C aka anonymous arrays
 *
 */

#include <stdio.h>
#include <stdlib.h>
#include <assert.h>

static void show (char *arr[])
{
    int i = 0;

    assert (arr != NULL);
    while (arr[i] != NULL) {
        printf ("arr[%d] = %s\n", i, arr[i]);
        i++;
    }
}

int main (int argc, char **argv)
{
    show ((char *[]) {
          "Here", "we", "go", "again", NULL});
    return EXIT_SUCCESS;
}