rubyx/test/bench/itos.c
Torsten Ruger 96972dab29 thats most of the benchmarking
strange about the puts in soml, hard to see where a factor of 10 would
come from
2015-11-20 23:51:58 +02:00

12 lines
151 B
C

#include<stdio.h>
int main(void)
{
char stringa[20] ;
int counter = 98304 + 1696;
while(counter--) {
sprintf(stringa, "%i\n" , counter);
}
}