rubyx/test/bench/c/itos.c
Torsten 00bf38a0e6 updating benchmarks
on the new machine, consistent
not rubyx yet
2019-07-23 20:14:28 +03:00

12 lines
141 B
C

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