Mercurial > hg > CbC > CbC_gcc
view libmudflap/testsuite/libmudflap.c/pass49-frag.c @ 32:59194914942b
add documents.
CbC-INSTALL: howto build the gcc for various systems.
CbC-implementation.ja: methods of implementation for CbC's statement.
author | kent <kent@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 08 Dec 2009 14:07:28 +0900 |
parents | a06113de4d67 |
children |
line wrap: on
line source
#include <stdlib.h> #include <ctype.h> #include <stdarg.h> int foo (int a, ...) { va_list args; char *a1; int a2; int k; va_start (args, a); for (k = 0; k < a; k++) { if ((k % 2) == 0) { char *b = va_arg (args, char *); printf ("%s", b); } else { int b = va_arg (args, int); printf ("%d", b); } } va_end (args); return a; } int main () { foo (7, "hello ", 5, " ", 3, " world ", 9, "\n"); return 0; } /* { dg-output "hello 5 3 world 9" } */