rubyx/test/bench/c/itos.c
Torsten Ruger f865486f1e tweeks to the c tests
also figured out hello was caching stopped that to make results
comparable
even wrote a hello assembler version which is just 10% faster than soml
:-)
2015-11-21 16:33:07 +02:00

12 lines
151 B
C

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