7320cd1d11762088cc980ba92b609a118390c0f6
[svn/Cll1h/.git] / demos / performance / printf2.c
1 #include <stdio.h>
2
3 #define RUNS 10000000UL
4 int main (void)
5 {
6 unsigned long i;
7 for (i=0;i<RUNS;i++)
8 {
9 printf("%s %s\n","stuff2","stuff2");
10 }
11 return 0;
12 }
This page took 0.223976 seconds and 3 git commands to generate.