Skip to content

Latest commit

 

History

History
23 lines (21 loc) · 691 Bytes

README.md

File metadata and controls

23 lines (21 loc) · 691 Bytes

C-for-Beginners :octocat:

By: Christopher Katsaras

Small C programs to teach you the basics
alt tag

For best results, compile using:

gcc -Wall

Variable and filenames follow CamelCase standards

skeleton.c

Skeleton C program

helloWorld.c

Hello world program ##printingVariables.c First use of variables which includes declaring, assigning values and printing the values stored ##scanning.c Scanning and storing variables which include char, int and double data type. ##ifElse.c First use of if and else statments

forLoop.c

First and basic use of for loops

whileLoops.c

First use of while and do while loops