compliteral.c
author Markus Bröker <mbroeker@largo.dyndns.tv>
Wed, 02 May 2012 20:49:41 +0200
changeset 164 e1f4bba1097a
parent 140 05d42a3737a4
permissions -rw-r--r--
Small Makefile changes committer: Markus Bröker <mbroeker@largo.homelinux.org>

/**
 * 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;
}