compliteral.c
author Markus Bröker<broeker.markus@googlemail.com>
Sun, 10 Feb 2019 13:17:01 +0100
changeset 173 374a86886bc5
parent 140 05d42a3737a4
permissions -rw-r--r--
LAST-DIGIT-BUG: INCREMENT before LF

/**
 * Compound literals in C aka anonymous arrays
 * Copyright (C) 2008 Markus Broeker
 */

#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;
}