binary B+ tree - first attempt, compiles and runs
[svn/Cll1h/.git] / demos / performance / fputs2.c
CommitLineData
81088cec 1#include <stdio.h>
2
3#define RUNS 10000000UL
4int main (void)
5{
6 unsigned long i;
7 for (i=0;i<RUNS;i++) {
8 fputs("stuff1",stdout);
9 fputs(" ",stdout);
10 fputs("stuff2",stdout);
11 fputs("\n",stdout);
12 }
13 return 0;
14}
This page took 0.125733 seconds and 4 git commands to generate.