rubyx/test/bench/itos.c

12 lines
151 B
C
Raw Normal View History

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