Initial commit
This commit is contained in:
13
kapitel5/unsignedtest.c
Normal file
13
kapitel5/unsignedtest.c
Normal file
@@ -0,0 +1,13 @@
|
||||
#include <stdio.h>
|
||||
#include <unistd.h>
|
||||
|
||||
int main(void)
|
||||
{
|
||||
unsigned int i;
|
||||
for (i = 10; i >= 0; i--)
|
||||
{
|
||||
printf("%u\n", i);
|
||||
sleep(1);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user