Python range vs. xrange comparison added
[svn/Cll1h/.git] / demos / performance / printf.c
... / ...
CommitLineData
1#include <stdio.h>
2
3#define RUNS 10000000UL
4int main (void)
5{
6unsigned long i;
7for (i=0;i<RUNS;i++) {
8printf("stuff\n");
9}
10return 0;
11}
This page took 0.076488 seconds and 4 git commands to generate.