Skip to content

Commit

Permalink
add cc stdout
Browse files Browse the repository at this point in the history
  • Loading branch information
nickleefly committed Jan 11, 2014
1 parent 4b7f505 commit a5f2a6a
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions c/stdout.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#include <stdio.h>
#include <unistd.h>

int main() {
int i = 0;
for (i = 0; i < 10; i++) {
printf("%d ", i);
sleep(1);
}
}

0 comments on commit a5f2a6a

Please sign in to comment.