diff options
author | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-04-10 20:49:36 +0000 |
---|---|---|
committer | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-04-10 20:49:36 +0000 |
commit | 986ef9079edd038f0353e81ea0c4218027392369 (patch) | |
tree | b411addcbc40a1939d33ef8d8daa591bc48f999d /wk5 | |
parent | 640a08101fb4c5d09502bc17dca933a3a6a76d68 (diff) |
Wed, Apr 10, 2024, 1:49 PM -07:00
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); +} |