compliteral.c
author Markus Bröker <mbroeker@largo.dyndns.tv>
Wed, 26 May 2010 14:56:44 +0200
changeset 126 52722ac7693f
parent 108 d6a52e0152fb
child 140 05d42a3737a4
permissions -rw-r--r--
mysql_db: get not more than num_fields fields from a row I haven't tested the old approach, because i have never installed or used mysql. But it's nice to see that it actually works with this small patch. 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;
}