Join our Discord server for updates: / discord (Alternative Link: / discord )
Follow us on social media:
Instagram: / ieee.ualbany
Twitter: / ieeeualbany
=========================
"A Juicy Overture of the C Programming Language" is meant to give a complete two week crash course on the C programming language from the ground up. Prior knowledge of C is unnecessary, but for those who already know C, this series provides ample opportunity to sharpen your skills and deepen your understanding of the finer complexities of the language.
Note: There was an error while recording Part 1 of this workshop series. We apologize for any inconveniences this may have caused.
In the last workshop, we covered:
Math, Logic, n' Bits
Declaring variables
Data types
Operators
CV-Qualifiers, Signed and Unsigned
Basic I/O
In this workshop, we covered:
Control, Control, Control!
Conditional control flow
Fixed arrays (without pointers)
Loops (for, while, do-while)
Functions (pass-by-value)
In the next workshop we will cover:
Pointers without Tears
Pointers
Advanced functions
Dynamic memory allocation (malloc, calloc, realloc, and free)
Structs