diff options
Diffstat (limited to 'wk5')
-rw-r--r-- | wk5/lect/test.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/wk5/lect/test.c b/wk5/lect/test.c new file mode 100644 index 0000000..f5ccf22 --- /dev/null +++ b/wk5/lect/test.c @@ -0,0 +1,13 @@ +#include <cs50.h> +#include <ctype.h> +#include <stdint.h> +#include <stdio.h> +#include <stdlib.h> +#include <string.h> +#include <math.h> + +int main(void) +{ + int i = 000; + printf("%i", i); +} |