2015-11-20 22:51:58 +01:00
|
|
|
#include<stdio.h>
|
|
|
|
|
|
|
|
int main(void)
|
|
|
|
{
|
|
|
|
char stringa[20] ;
|
2019-07-23 19:14:28 +02:00
|
|
|
int counter = 1000;
|
2015-11-20 22:51:58 +01:00
|
|
|
while(counter--) {
|
2019-07-23 19:14:28 +02:00
|
|
|
sprintf(stringa, "%i\n" , counter);
|
2015-11-20 22:51:58 +01:00
|
|
|
}
|
2019-07-23 19:14:28 +02:00
|
|
|
|
2015-11-20 22:51:58 +01:00
|
|
|
}
|