https://github.com/georgecatalin-codepractice-courses/learn-c-programming
Code practice from Pluralsight course "C Programming Language Fundamentals" by Kenny Kerr
https://github.com/georgecatalin-codepractice-courses/learn-c-programming
c cprogramming cprogramming-language pluralsight-course
Last synced: about 1 month ago
JSON representation
Code practice from Pluralsight course "C Programming Language Fundamentals" by Kenny Kerr
- Host: GitHub
- URL: https://github.com/georgecatalin-codepractice-courses/learn-c-programming
- Owner: georgecatalin-CodePractice-Courses
- Created: 2020-03-02T15:03:35.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-03-09T15:22:35.000Z (over 6 years ago)
- Last Synced: 2025-03-04T17:53:57.948Z (over 1 year ago)
- Topics: c, cprogramming, cprogramming-language, pluralsight-course
- Language: C
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Learn-C-Programming
Code practice from Pluralsight course "C Programming Language Fundamentals" by Kenny Kerr
## Introduction 10m 2s
### Welcome
### History
### What is C?
### Adoption and Relevance
### Getting Started
## Variables 20m
### Welcome
### Variables
### Names
### Types
### Declarations and Initialization
### Storage and Visibilty
### Demo: Compilation Model
### Demo: Local Variables
### Demo: Global Variables
## Operators 11m 8s
### Welcome
### Arithmetic Operators
### Relational Operators
### Logical Operators
### Bitwise Operators
### Unary Operators
### Assignment Operators
### Precedence of Operators
## Expressions and Statements 13m 51s
### Welcome
### Expressions
### Statements
### If Statements
### Iteration Statements
### Loop Jumping
### Switch Statements
### Demo: Expressions and Variables
### Demo: Bool and If Statements
## Pointers and Arrays 9m 24s
### Welcome
### Pointers and Addresses
### Pointers and Variables
### Defining Arrays
### Arrays and Pointers
## Functions and Structures
### Welcome
### Functions
### Structures
### Using Structures
### Demo: Making a List
### Demo: Using a List
### Conclusion