mirror of
https://github.com/krislamo/knrc.git
synced 2024-11-10 00:30:35 +00:00
Character counting example
This commit is contained in:
parent
979467565f
commit
72093b7232
11
05-char-counting.c
Normal file
11
05-char-counting.c
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
long nc;
|
||||||
|
|
||||||
|
nc = 0;
|
||||||
|
while (getchar() != EOF)
|
||||||
|
++nc;
|
||||||
|
printf("%ld\n", nc);
|
||||||
|
}
|
5
Makefile
5
Makefile
@ -1,4 +1,4 @@
|
|||||||
all: hello mathvars c2f input
|
all: hello mathvars c2f input count
|
||||||
|
|
||||||
hello: 01-hello-world.c
|
hello: 01-hello-world.c
|
||||||
gcc -o ./bin/01-helloworld 01-hello-world.c
|
gcc -o ./bin/01-helloworld 01-hello-world.c
|
||||||
@ -12,5 +12,8 @@ c2f: 03-celsius-to-fahrenheit.c
|
|||||||
input: 04-file-copying.c
|
input: 04-file-copying.c
|
||||||
gcc -o ./bin/04-input 04-file-copying.c
|
gcc -o ./bin/04-input 04-file-copying.c
|
||||||
|
|
||||||
|
count: 05-char-counting.c
|
||||||
|
gcc -o ./bin/05-count 05-char-counting.c
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
$(RM) ./bin/*-*
|
$(RM) ./bin/*-*
|
||||||
|
Loading…
Reference in New Issue
Block a user