Skip to content

nicostack/unix-programming

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

LearnC

Tutorial to C Programming

Compile with Makefile:

CC := gcc
CFLAGS := -Wall -Wextra -O2 -pedantic -Wpedantic -Wformat -pthread
.PHONY: all clean help

clean:
        rm -f *.G *~ $(PROGS)
help:
        @echo " USage ..."

or use gcc command:

$ gcc -Wall -Wextra -O2 -pedantic -Wpedantic -Wformat -pthread <filename.c> -o <filename>

About

Tutorial to C Programming

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published