16 lines
198 B
C
16 lines
198 B
C
|
|
#include<stdlib.h>
|
||
|
|
#include<stdio.h>
|
||
|
|
#include<unistd.h>
|
||
|
|
|
||
|
|
int main (int argc, char** argv)
|
||
|
|
{
|
||
|
|
while (1)
|
||
|
|
{
|
||
|
|
printf("%c",argv[1][0]);
|
||
|
|
fflush(stdout);
|
||
|
|
usleep(500000);
|
||
|
|
}
|
||
|
|
return EXIT_SUCCESS;
|
||
|
|
}
|
||
|
|
|