// badcount.c -- incorrect argument counts
#include <stdio.h>

int main(void)
{
	int f = 4;
	int g = 5;
	float h = 5.0f;

	// too many arguments
	printf("%d\n", f, g);
	// too few arguments
	printf("%d %d\n", f);
	// wrong kind of values
	printf("%d %f\n", h, g);
	return 0;
}