move c benchmarks to own directory
This commit is contained in:
11
test/bench/c/itos.c
Normal file
11
test/bench/c/itos.c
Normal file
@ -0,0 +1,11 @@
|
||||
#include<stdio.h>
|
||||
|
||||
int main(void)
|
||||
{
|
||||
char stringa[20] ;
|
||||
|
||||
int counter = 98304 + 1696;
|
||||
while(counter--) {
|
||||
sprintf(stringa, "%i\n" , counter);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user