atoi_print.c
author Markus Bröker <mbroeker@largo.dyndns.tv>
Mon, 07 Jun 2010 23:20:47 +0200
changeset 132 54a04f5f141d
parent 77 49e0babccb23
permissions -rw-r--r--
Adjusted to show side effects and their handling When dealing with static buffers, successive calls point to the same memory location and overwrite formers ones... committer: Markus Bröker <mbroeker@largo.homelinux.org>

/**
 * atoi_print.c
 * Copyright (C) 2008 Markus Broeker
 */

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

int main (int argc, char **argv)
{
    unsigned int i;

    for (i = 1; i < argc; i++)
        printf ("atoi(%s):=%d\n", argv[i], atoi (argv[i]));

    return EXIT_SUCCESS;
}