Language Ccpp Cref Examples Var_func.c

/ ************************************************************************
 *
 * Purpose: Program to demonstrate functions that have a variable
 *	 number of parameters.
 * Author: M J Leslie.
 * Date: 28-Mar-94
 *
 ************************************************************************/
#include <stdio.h>
#include <stdarg.h>			/* va_list, va_arg, va_end	*/
int set(char *item, int num, ...);	/* Declare the function. */
/************************************************************************/
main()
{
 char *item="pear";
 int Ret;
 
 Ret = set (item,4, "apple", "pear", "banana", "grape");
 
 if (Ret)
 {
 printf ("%s found\n", item);
 }
 else
 {
 printf("%s not found\n", item);
 }
}
/************************************************************************/
int set(char *item, int num, ...)
{
 va_list ap;				/* define 'ap' It acts as a
					 * pointer to the undefined 
					 * variables.			*/
 int Ret=0;
 int Inc=0; /* Assume the worst. */
 va_start(ap, num);			/* seed 'ap'			*/
 do
 {
 if ( item == va_arg(ap, char *))
 {
 Ret = 1;
 }
 } while ( Ret==0 && ++Inc < num);
 va_end(ap);				/* tidy up.			*/
 return (Ret);
}

file: /Techref/language/ccpp/cref/EXAMPLES/var_func.c, 1KB, , updated: 1998年4月4日 23:21, local time: 2025年9月27日 13:11,
40.74.122.252:LOG IN

©2025 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions?
Please DO link to this page! Digg it! / MAKE!

<A HREF="http://massmind.org/Techref/language/ccpp/cref/EXAMPLES/var_func.c"> language ccpp cref EXAMPLES var_func</A>

Did you find what you needed?

Welcome to massmind.org!

Welcome to massmind.org!

.

AltStyle によって変換されたページ (->オリジナル) /