binary B+ tree - first attempt, compiles and runs
[svn/Cll1h/.git] / demos / performance / fwrite.c
CommitLineData
e1fbb836 1#include <stdio.h>
2#include <string.h>
3
4#define RUNS 10000000UL
5int main (void)
6{
7 unsigned long i;
8 char *s1="stuff\n";
9 int l1=strlen(s1);
10
11 for (i=0;i<RUNS;i++)
12 {
13 fwrite(s1,l1,1,stdout);
14 }
15 return 0;
16}
This page took 0.143243 seconds and 4 git commands to generate.