FileMood

Download UD748

UD748

Name

UD748

  DOWNLOAD Copy Link

Trouble downloading? see How To

Total Size

4.0 GB

Total Files

148

Hash

E4828D901C740BCBA20D43A76A3943EA01596E89

/01 Introduction/

001 Welcome to Class.mp4

23.5 MB

002 Class Organization.mp4

11.6 MB

003 Fundamentals of a Program.mp4

35.8 MB

004 Overview.mp4

26.9 MB

005 Language Features.mp4

23.9 MB

006 Creating a C Program.mp4

34.2 MB

/.../02 Installing Required Software/

007 Overview.mp4

24.0 MB

008 Installing the C Compiler (Windows).mp4

70.0 MB

009 Installing the C Compiler (Mac).mp4

48.0 MB

010 Installing CodeBlocks (Windows).mp4

96.7 MB

011 Installing CodeLite (Windows).mp4

63.9 MB

012 Installing CodeLite (Mac).mp4

40.5 MB

013 Installing Visual Studio Code and C Extension Linux.mp4

36.5 MB

014 Installing Visual Studio Code and C Extension Windows.mp4

27.0 MB

015 Installing Visual Studio Code and C Extension Mac.mp4

43.9 MB

/.../03 Starting to write code/

016 Exploring the CodeBlocks Environment.mp4

19.7 MB

017 Creating a Project in CodeBlocks.mp4

37.8 MB

018 Exploring The Visual Studio Code Environment.mp4

57.5 MB

019 Creating a Workspace and Configuring the Compiler in Visual Studio Code.mp4

95.3 MB

020 Creating and running your first C Program.mp4

14.8 MB

021 (Challenge) Writing a C program that displays your name.mp4

9.8 MB

022 (Demonstration) Writing a C program that displays your name.mp4

7.7 MB

023 Structure of a C Program.mp4

53.7 MB

external-assets-links.txt

0.2 KB

/.../04 Basic Concepts/

024 Comments.mp4

25.2 MB

025 The preprocessor.mp4

10.0 MB

026 The include statement.mp4

23.9 MB

027 Displaying Output.mp4

8.7 MB

028 Reading input from the terminal.mp4

95.3 MB

/.../05 Variables and Data Types/

029 Overview.mp4

87.4 MB

030 Basic Data Types.mp4

97.7 MB

031 Enums and Chars.mp4

30.0 MB

032 Format Specifiers.mp4

120.5 MB

033 Command line arguments.mp4

20.4 MB

034 (Challenge) Print the Area of a Rectangle.mp4

10.9 MB

035 (Demonstration) Print the Area of a Rectangle.mp4

23.0 MB

036 (Challenge) Create and use an enum type.mp4

5.7 MB

037 (Demonstration) Create and use an enum type.mp4

21.8 MB

external-assets-links.txt

0.3 KB

/06 Operators/

038 Overview.mp4

12.9 MB

039 Basic Operators.mp4

49.1 MB

040 Bitwise Operators.mp4

165.7 MB

041 The Cast and sizeof Operators.mp4

25.0 MB

042 Operator Precedence.mp4

19.1 MB

043 (Challenge) Convert minutes to years and days.mp4

7.7 MB

044 (Demonstration) Convert minutes to years and days.mp4

20.2 MB

045 (Challenge) Print the byte size of the basic data types.mp4

6.1 MB

046 (Demonstration) Print the byte size of the basic data types.mp4

12.3 MB

external-assets-links.txt

0.3 KB

/.../07 Control Flow/

047 Overview.mp4

17.4 MB

048 If Statements.mp4

41.7 MB

049 Switch Statement.mp4

34.5 MB

050 (Challenge) Determine amount of Pay.mp4

10.2 MB

051 (Demonstration) Determine the amount of weekly Pay.mp4

32.0 MB

052 For Loop.mp4

42.3 MB

053 While and Do-While.mp4

25.3 MB

054 Nested Loops and loop Control - Break and Continue.mp4

21.8 MB

055 (Challenge) Guess the Number.mp4

14.2 MB

056 (Demonstration) Guess the Number.mp4

199.5 MB

external-assets-links.txt

0.3 KB

/08 Arrays/

057 Creating and using Arrays.mp4

40.9 MB

058 Initialization.mp4

53.4 MB

059 Multidimensional Arrays.mp4

19.7 MB

060 Variable Length Arrays.mp4

7.0 MB

061 (Challenge) Generate Prime Numbers.mp4

9.6 MB

062 (Demonstration) Generate Prime Numbers.mp4

22.4 MB

063 (Challenge) Create a simple Weather program.mp4

8.6 MB

064 (Demonstration) Create a simple Weather Program.mp4

27.5 MB

external-assets-links.txt

0.3 KB

/09 Functions/

065 Basics.mp4

20.7 MB

066 Defining Functions.mp4

24.4 MB

067 Arguments and Parameters.mp4

16.0 MB

068 Returning data from functions.mp4

20.0 MB

069 Local and Global Variables.mp4

15.6 MB

070 (Challenge) Write some functions.mp4

7.3 MB

071 (Demonstration) Write some functions.mp4

40.4 MB

072 (Challenge) Create a Tic Tac Toe Game.mp4

10.1 MB

073 (Demonstration) Create a Tic Tac Toe Game.mp4

47.9 MB

external-assets-links.txt

0.3 KB

/.../10 Character Strings/

074 Overview.mp4

44.4 MB

075 Defining a String.mp4

28.9 MB

076 Constant Strings.mp4

15.7 MB

077 Common String Functions.mp4

35.7 MB

078 Searching Tokenizing and Analyzing Strings.mp4

44.7 MB

079 Converting Strings.mp4

15.0 MB

080 (Challenge) Understanding char arrays.mp4

5.3 MB

081 (Demonstration) Understanding char arrays.mp4

30.3 MB

082 (Challenge) Utilizing common string functions.mp4

4.6 MB

083 (Demonstration) Utilizing common string functions.mp4

32.2 MB

external-assets-links.txt

0.3 KB

/11 Debugging/

084 Overview.mp4

39.9 MB

085 Understanding the call stack.mp4

13.1 MB

086 Code Blocks Debugger.mp4

25.9 MB

087 Common C Mistakes.mp4

21.4 MB

088 Understanding Compiler Errors.mp4

18.4 MB

/12 Pointers/

089 Overview.mp4

17.8 MB

090 Defining Pointers.mp4

11.9 MB

091 Accessing Pointers.mp4

21.8 MB

092 (Challenge) Pointer Basics.mp4

5.3 MB

093 (Demonstration) Pointer Basics.mp4

12.8 MB

094 Using Pointers.mp4

32.2 MB

095 Pointers and const.mp4

15.8 MB

096 void pointers.mp4

6.7 MB

097 Pointers and Arrays.mp4

42.1 MB

098 Pointer Arithmetic.mp4

37.1 MB

099 Pointers and Arrays Example.mp4

68.0 MB

100 Pointers and Strings.mp4

17.0 MB

101 (Challenge) Counting characters in a String.mp4

6.5 MB

102 (Demonstration) Counting characters in a string.mp4

16.8 MB

103 Pass by reference.mp4

23.6 MB

104 (Challenge) Using Pointers as parameters.mp4

3.2 MB

105 (Demonstration) Using Pointers as parameters.mp4

14.0 MB

106 Dynamic Memory Allocation.mp4

12.0 MB

107 malloc calloc and realloc.mp4

28.9 MB

108 (Challenge) Using Dynamic Memory.mp4

4.5 MB

109 (Demonstration) Using Dynamic Memory.mp4

18.6 MB

external-assets-links.txt

0.6 KB

/13 Structures/

110 Creating and Using Structures.mp4

31.4 MB

111 Structures and Arrays.mp4

18.0 MB

112 Nested Structures.mp4

15.7 MB

113 Structures and Pointers.mp4

32.4 MB

114 Structures and Functions.mp4

18.2 MB

115 (Challenge) Declaring and Initializing a structure.mp4

3.4 MB

116 (Demonstration) Declaring and Initializing a structure.mp4

16.6 MB

117 (Challenge) Structure Pointers and Functions.mp4

6.2 MB

118 (Demonstration) Structure Pointers and Functions.mp4

25.9 MB

external-assets-links.txt

0.3 KB

/.../14 File Input and Output/

119 Overview.mp4

16.6 MB

120 Accessing Files.mp4

25.4 MB

121 Reading for a file.mp4

26.6 MB

122 Writing to a file.mp4

51.9 MB

123 Finding your position in a File.mp4

23.5 MB

124 (Challenge) Find the number of lines in a file.mp4

4.8 MB

125 (Demonstration) Find the number of lines in a file.mp4

15.1 MB

126 (Challenge) Convert characters in a file to uppercase.mp4

6.8 MB

127 (Demonstration) Convert characters in a file to uppercase.mp4

20.2 MB

128 (Challenge) Print the contents of a file in reverse order.mp4

4.8 MB

129 (Demonstration) Print the contents of a file in reverse order.mp4

14.5 MB

external-assets-links.txt

0.5 KB

/.../15 The Standard C Library/

130 Standard Header Files.mp4

8.0 MB

131 Various Functions.mp4

19.8 MB

132 Math Functions.mp4

7.1 MB

133 Utility Functions.mp4

14.8 MB

/16 Conclusion/

134 Further Topics of Study.mp4

17.5 MB

135 Course Summary.mp4

54.2 MB

/.../17 Extra Information - Source code and other stuff/

136 Source Codes.html

6.3 KB

137 Bonus Lecture and Information.mp4

101.4 MB

137 Free-Course-and-Programming-Guide-PDF.pdf

10.1 MB

 

Total files 148


Copyright © 2025 FileMood.com