Compare commits
2 Commits
af95125894
...
726566bb23
Author | SHA1 | Date | |
---|---|---|---|
726566bb23 | |||
7e07054a70 |
1
lcthw/.gitignore
vendored
1
lcthw/.gitignore
vendored
@ -2,3 +2,4 @@ ex1
|
|||||||
ex3
|
ex3
|
||||||
ex7
|
ex7
|
||||||
ex8
|
ex8
|
||||||
|
ex9
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
CFLAGS ?= -Wall -g
|
CFLAGS ?= -Wall -g
|
||||||
GDBRUN = gdb --batch --ex run --ex bt --ex q --args
|
GDBRUN = gdb --batch --ex run --ex bt --ex q --args
|
||||||
BUILD_TARGETS = ex1 ex3 ex7 ex8
|
BUILD_TARGETS = ex1 ex3 ex7 ex8 ex9
|
||||||
|
|
||||||
.PHONY: all
|
.PHONY: all
|
||||||
all: build test
|
all: build test
|
||||||
|
@ -5,7 +5,7 @@ int main(int argc, char* argv[])
|
|||||||
int i = 0;
|
int i = 0;
|
||||||
|
|
||||||
if (argc == 1) {
|
if (argc == 1) {
|
||||||
printf("You no argument.\n");
|
printf("You have no argument.\n");
|
||||||
} else if (argc > 1 && argc < 4) {
|
} else if (argc > 1 && argc < 4) {
|
||||||
printf("Here's your arguments:\n");
|
printf("Here's your arguments:\n");
|
||||||
|
|
||||||
|
15
lcthw/ex9.c
Normal file
15
lcthw/ex9.c
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
|
int main(int argc, char *argv[])
|
||||||
|
{
|
||||||
|
int i = 0;
|
||||||
|
while (i < 25) {
|
||||||
|
printf("%d", i);
|
||||||
|
i++;
|
||||||
|
}
|
||||||
|
|
||||||
|
// need this to add a final newline
|
||||||
|
printf("\n");
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user