OpenCores
URL https://opencores.org/ocsvn/scarts/scarts/trunk

Subversion Repositories scarts

[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [libmudflap/] [testsuite/] [libmudflap.c/] [pass49-frag.c] - Rev 14

Compare with Previous | Blame | View Log

#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" } */
 

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.