Dashboard Temp Share Shortlinks Frames API

abh - HTMLify profile

files of /abh/learning/c/RCU/src/wc/

Makefile /abh/learning/c/RCU/src/wc/Makefile
60 Views
0 Comments

wc: main.c
gcc main.c -o wc

clean:
rm wc

wc /abh/learning/c/RCU/src/wc/main.c
231 Views
0 Comments
/* wc */

#define POSIX_C_SOURCE 200809L

#include <stdio.h>
#include <stdbool.h>
#include <string.h>
#include <malloc.h>
readme.md /abh/learning/c/RCU/src/wc/readme.md
58 Views
0 Comments
# wc

word, line, and byte or character count

---

## POSIX Compliance