Oreilly - Learn and Master C Programming For Absolute Beginners! - 9781788835718
Oreilly - Learn and Master C Programming For Absolute Beginners!
by Mohammad El-Haj | Released October 2017 | ISBN: 9781788835718


C PROGRAMMING FOR BEGINNERS WITH OVER 50 EASY TO FOLLOW HANDS-ON PROJECTS USING VISUAL STUDIO!About This VideoMastery of C programming including advanced as well as complex partsMastery of Visual Studio on Windows for C/C++ programmersSource Code ExamplesTons of hands-on practiceHelp and support with Q&ATest your understanding with end-of-section quizzesOver 50 projects and solutions in C using Visual StudioIn DetailIn this course, we'll explore the C programming language from the ground up. We'll begin with a brief section on computer basics followed by a Hello world program in C and a walk-through to understand its elements and to dissect it. You will be introduced to the main elements of C like data types, operators, arrays, strings, pointers...etc. We will cover ALL C KEYWORDS in this course, when and how to use them with coding examples! I have dedicated entire sections for pointers, arrays, and strings. This course has the most extensive details on how and why we need pointers and how to avid pointer related gotchas. I guarantee you will not find any other course that covers pointers in this depth with easy to understand and follow examples like this course. There is even a full section on mastering Visual Studio included here for free so you can master using it for C/C++ and even C#; as well as Visual Basic. This course will help you learn and master C language and become a professional programmer on your own pace by watching me as I introduce you to the concepts and fundamentals of programming and writing efficient code in C with easy to follow lectures that are full of hands-on practices and coding! During this course, I will share with you the tips and tricks of the trade that I learned throughout my 20+ years of professional career as a software engineer! I will teach you C language and programming from the ground up as I assume you have no prior programming experience. I have included sections for people who have never programmed before, but for those who are already programming, they can either watch them refresh on some fundamentals or simply chose to skip them altogether. If you want to become a professional software developer then search no more, you have found the right course! Show and hide more Publisher resources Download Example Code
  1. Chapter 1 : Introduction
    • Welcome to this course! 00:00:06
    • About your instructor... 00:01:20
    • What is covered in this course? 00:01:39
  2. Chapter 2 : Quick Intro To Computer Basics
    • Section Introduction 00:00:33
    • CPU, GPU and 32-bit versus 64-bit Processors 00:05:53
    • Memory & Storage 00:05:04
    • Software: BIOS, OS and Programs 00:02:50
    • A quick look at Programming Languages 00:07:07
    • A brief history of C language 00:03:35
  3. Chapter 3 : Installing & Configuring Visual Studio
    • Downloading Visual Studio 2015 00:03:14
    • Installing Visual Studio 2015 00:05:45
  4. Chapter 4 : Writing our First Program - A 'Hello, World!' Program in C
    • Writing Our First Program Using Visual C on the Command-Line 00:10:01
    • Using Visual Studio Command Prompt to write 'Hello, World' one more time 00:08:59
    • Using Visual Studio IDE to write our first C Program 00:13:29
    • A Deeper Look At Our First C Program & Compilation Process 00:08:08
  5. Chapter 5 : Walkthrough: Visual Studio IDE
    • Section Introduction and Overview 00:01:08
    • Visual Studio Start Page 00:01:26
    • Visual Studio File Menu 00:03:10
    • Edit Menu 00:01:57
    • Showing Line Numbers In The Text Editor 00:01:13
    • Tabs versus White Space 00:05:22
    • Quick Find in Visual Studio 00:03:06
    • Find & Replace in Visual Studio 00:02:04
    • Visual Studio Debug Menu 00:05:34
    • Build Menu 00:03:17
    • Visual Studio Solutions & Projects 00:10:41
  6. Chapter 6 : Fundamentals and Basics
    • Comments in C 00:07:21
    • C Symbols & Keywords 00:01:36
    • Introduction to C Data Types and Basic Types 00:12:41
    • Basic C Types Continued 00:06:37
    • How to use Basic C Types with prtinf format specifiers 00:09:48
    • C Variables and Constants 00:13:17
    • 'enum' Data Types in C 00:04:57
    • Variable Scope 00:07:00
    • More on Block Scope in C 00:03:45
    • Understanding & Creating C Functions 00:11:06
  7. Chapter 7 : Operators & Expressions
    • Operators & Expressions in C 00:13:12
    • Using Arithmetic Assignment Operators in C 00:05:37
    • Increment & Decrement Operators in C/C++ 00:07:10
    • Cast Operator and Type Casting in C 00:04:38
  8. Chapter 8 : Conditional Statements
    • Using if...else...conditional statements 00:05:56
    • If...else...Code Example: Checking high blood pressure readings 00:09:09
    • Using Ternary Operator 00:04:14
    • Using switch statement 00:08:57
    • Using 'break' keyword... 00:05:53
  9. Chapter 9 : Loops, Jump keywords & Control Flow
    • Introduction to Loops 00:00:19
    • Understanding For Loops in C/C++ 00:03:21
    • Using For Loops in C/C++ 00:06:52
    • Stepping through and debugging a 'for' Loop 00:05:21
    • Using 'while' loops in C/C++ 00:06:32
    • Using 'do...while' Loops in C/C++ 00:05:57
    • Using 'continue' keyword... 00:04:31
    • Using 'goto'... 00:04:33
  10. Chapter 10 : Arrays
    • Introduction to Arrays 00:07:10
    • Working with single-dimension arrays in C/C++ 00:03:29
    • Arrays and Functions 00:06:11
    • How To Calculate Array Size in C/C++ 00:06:46
    • Working with 2D Arrays 00:03:33
    • Declaring and Initializing Multidimensional Arrays 00:05:07
    • Character Arrays versus Strings 00:06:58
  11. Chapter 11 : Pointers
    • Introduction & Section Overview 00:02:38
    • Address of Operator (&) 00:02:55
    • Why Do We Need Pointers? 00:04:48
    • What is a pointer? 00:08:51
    • Using Pointers 00:06:44
    • A Closer Look At How Pointers Work! 00:01:57
    • Passing Pointers to Functions: Let's Implement Swap Function! 00:07:05
    • Passing Pointers to Functions: Example With 2 Pointers 00:06:58
    • Passing By Value vs. Passing By Pointer 00:03:12
    • Pointers and Arrays 00:05:54
    • Pointer Arithmetic: Working with Integer Pointers 00:06:31
    • Pointer Arithmetic: Printing out Memory Addresses for Pointers 00:01:51
    • Pointer Arithmetic: Working with Character Pointers (Strings) 00:02:16
    • Pointers and Strings: Beware of Attempting to Modify Read-Only Memory! 00:04:12
    • Pointers and Strings (2): Printing Out Vowels In a String 00:04:55
    • Pointers and Strings: Remove Vowels Example 00:04:38
    • Pointers and Arrays: Using Pointer Arithmetic with Arrays 00:03:25
    • Pointers and 'const' Keyword 00:08:07
    • Void Pointers 00:06:28
  12. Chapter 12 : Strings
    • Working With Strings - Reviewing Strings in C/C++ 00:03:34
    • Using 'strlen' function to get length of string 00:04:49
    • Using 'strcpy' and 'strcat' functions 00:06:05
    • Using 'sprintf' function 00:06:46
    • Using 'strcmp' and 'stricmp' functions to compare strings 00:04:52
    • Using 'strchr' to search for characters inside strings 00:09:13
    • Using 'strstr' to search for a substring inside another string 00:06:55
    • How to declare and use string arrays 00:06:13
    • Arguments of main() function - Part 1 00:08:47
    • Arguments of main() function - Part 2 00:09:01
  13. Chapter 13 : Working with User Input
    • A quick overview of 'scanf' function 00:03:11
    • Getting user input using 'scanf' 00:06:10
    • Important Tips for Working with User Input 00:06:10
  14. Chapter 14 : Preprocessor Directives
    • Section Overview 00:01:01
    • #define directive 00:03:13
    • Using '#define' To Define Symbolic Constants 00:06:37
    • using #define to define macros and avoiding macro pitfalls 00:08:52
    • '#include': Angle Brackets (<>) versus Double Quotes ("") 00:07:09
    • Understanding Conditional Compilation 00:05:56
    • Using Conditional Compilation 00:05:11
    • '#error' preprocessor directive 00:01:01
    • Using "#" and "##" operators 00:06:48
  15. Chapter 15 : Working with Header Files and Multiple Source Files
    • Nesting Header Files & Multiple Inclusion Problem 00:08:29
    • Forward Declarations in C/C++ 00:08:40
    • Breaking Your Code Into Multiple Source Files 00:14:17
  16. Chapter 16 : Creating C Libraries (Static LIBs)
    • Libraries Overview 00:06:35
    • Creating Your First Library Project (.LIB) 00:07:09
    • Using Our Library in a Project - The Un-recommended Approach 00:11:40
    • Referencing Our Library When Installed in a Specific Path (Folder) 00:14:14
    • Using Our Library From Projects Within The Same Solution 00:12:01
  17. Chapter 17 : Structures & Unions
    • Using 'struct' keyword in C 00:05:55
    • Using 'union' keyword in C 00:09:11
  18. Chapter 18 : Working with Files and I/O
    • Introduction to File I/O 00:03:33
    • Reading and Writing Files (Overview) 00:07:41
    • Reading and Displaying Text Files - Part 1 00:10:08
    • Reading and Displaying Text Files - Part 2 00:04:28
    • Creating Text Files using File API in C/C++ 00:11:04
    • Searching for text inside a text file! 00:10:50
  19. Chapter 19 : Let's Talk Binary | Manipulating Bits
    • Bit-wise Operators Overview 00:02:56
    • Bit-wise AND (&) operator 00:02:14
    • Bit-wise OR (|) operator 00:00:54
    • Bit-wise XOR (^) Operator 00:00:47
    • Bit-wise NOT (~) Operator 00:00:53
    • Bit-wise Right Shifting Operator (>>) 00:01:18
    • Bit-wise Left Shifting Operator (<<) 00:01:24
    • Using Bit-wise Operators in Code 00:05:20
  20. Chapter 20 : Dynamic Memory Allocation
    • Dynamic Memory Management Overview 00:00:55
    • Understanding Stack Memory 00:05:12
    • Understanding Heap Memory 00:06:42
    • Stack vs. Heap 00:05:35
    • Using Malloc & Free In Our Code 00:09:27
  21. Chapter 21 : More C Keywords...
    • 'auto' keyword in C 00:02:28
    • 'register' keyword in C 00:02:35
    • declaring static variables inside functions with 'static' keyword in C 00:02:48
    • 'volatile' keyword in C 00:01:55
    • using 'typepdef' keyword in C 00:04:09
    • Understanding 'extern' keyword in C 00:03:21
    • Using 'extern' Keyword in our code 00:04:00
    • Using 'static' keyword with global variables and functions in C 00:09:35
  22. Chapter 22 : Advanced Topics
    • Recursion in C/C++ 00:10:19
    • Variadic Functions Overview 00:03:36
    • Let's Implement a Variadic Function in C - Technique #1 00:06:19
    • Let's Implement a Variadic Function in C - Technique #2 00:05:27
  23. Chapter 23 : Mixing C with C++ Code
    • Overview of Mixing C with C++ 00:05:47
    • Creating A C++ Program That Uses Our C Library 00:08:27
  24. Chapter 24 : Where To Go From Here...
    • Where To Go From Here... 00:02:07
  25. Show and hide more

    Oreilly - Learn and Master C Programming For Absolute Beginners!


 TO MAC USERS: If RAR password doesn't work, use this archive program: 

RAR Expander 0.8.5 Beta 4  and extract password protected files without error.


 TO WIN USERS: If RAR password doesn't work, use this archive program: 

Latest Winrar  and extract password protected files without error.


 Coktum   |  

Information
Members of Guests cannot leave comments.


SermonBox - Seasonal Collection

SermonBox - The Series Pack Collection

Top Rated News

  • Christmas Material
  • Laser Cut & Print Design Elements Bundle - ETSY
  • Daz3D - All Materials - SKU 37000-37999
  • Cgaxis - All Product - 2019 - All Retail! - UPDATED!!!
  • DigitalXModels Full Collections
  • Rampant Design Tools Full Collections Total: $4400
  • FilmLooks.Com Full Collection
  • All PixelSquid Product
  • The Pixel Lab Collection
  • Envato Elements Full Sources- 3200+ Files
  • Ui8.NET Full Sources
  • The History of The 20th Century
  • The Dover Collections
  • Snake Interiors Collections
  • Inspirational Collections
  • Veer Fancy Collections
  • All Ojo Images
  • All ZZVE Collections
  • All Sozaijiten Collections
  • All Image Broker Collections
  • Shuterstock Bundle Collections
  • Tattoo Collections
  • Blend Images Collections
  • Authors Tuorism Collections
  • Motion Mile - Big Bundle
  • PhotoBacks - All Product - 2018
  • Dekes Techniques - Photoshop & Illustrator Course - 1 to 673
Telegram GFXTRA Group
Udemy - Turkce Gorsel Ogrenme Setleri - Part 2
Videohive Wow Pack Series


rss