Education

Donbright
13 Views · 4 months ago

Scope refers to the availability of variables and functions in certain parts of the code.
🔥 Want to learn Python, the right way? Get my interactive Python course: https://bit.ly/right-python.

In this video, we will learn about the concept of global and local variables in Python. Local variables are variables declared inside the function body and they cannot be accessed from outside the function. Global variables are the variables declared outside of a function or in the global scope.

~
Run Python Online: https://www.programiz.com/pyth....on-programming/onlin
Programs in this video: https://github.com/programiz/p....ython-course/blob/ma
Python Global, Local and Nonlocal Variables (text-based tutorial): https://www.programiz.com/pyth....on-programming/globa
Python Functions: https://youtu.be/-Bkupx9gX0o?l....ist=PL98qAXLA6afuh50

Watch our videos and revise them with our Python App!
Download here for Android: https://bit.ly/learn-python-android
Download here for iOS: https://apple.co/3iPm6Sx

Timestamps:
0:00 Intro
0:23 Local Variables
2:28 Global Variables
5:16 Recap

Find Programiz elsewhere:
Facebook: https://www.facebook.com/programiz
Instagram: https://www.instagram.com/_programiz/
LinkedIn: https://www.linkedin.com/company/programiz
Website: https://www.programiz.com
-------------------------------------------------

Python Global Variables (☠ Don't Use them!) #14

#python #learnprogramming #programiz #localvariables #globalvariables

Donbright
19 Views · 4 months ago

In Python, you can define a function that takes variable number of arguments.
🔥 Want to learn Python, the right way? Get my interactive Python course: https://bit.ly/right-python

In the previous video, we learned about Python functions and how we can pass arguments to them. In this video, we will discuss the different ways in which we can pass arguments to a function in Python. We will also cover how to assign default values to function arguments.

~
Run Python Online: https://www.programiz.com/pyth....on-programming/onlin
Programs in this video: https://github.com/programiz/p....ython-course/blob/ma
Python Function Arguments (text-based tutorial): https://www.programiz.com/pyth....on-programming/funct
Python Functions: https://youtu.be/-Bkupx9gX0o?l....ist=PL98qAXLA6afuh50

Watch our videos and revise them with our Python App!
Download here for Android: https://bit.ly/learn-python-android
Download here for iOS: https://apple.co/3iPm6Sx

Timestamps:
0:00 Intro
0:28 Positional Arguments
1:42 Default Arguments
3:37 Keyword Arguments
4:46 Recap

Find Programiz elsewhere:
Facebook: https://www.facebook.com/programiz
Instagram: https://www.instagram.com/_programiz/
LinkedIn: https://www.linkedin.com/company/programiz
Website: https://www.programiz.com
-------------------------------------------------

Python Arguments in Functions (Positional, Keywords & Default Arguments) #13

#python #learnprogramming #programiz #pythonarguments

Donbright
10 Views · 4 months ago

A function is a group of related statements that performs a specific task. Functions make our program more organized and manageable by dividing it into smaller and modular chunks.
🔥 Want to learn Python, the right way? Get my interactive Python course: https://bit.ly/right-python

In this video, we will learn about Python functions. We will also learn about function arguments and the return statement. At the end of the video, we will learn to write a custom function to find the average marks and the corresponding grade for a university student.

~
Run Python Online: https://www.programiz.com/pyth....on-programming/onlin
Programs in this video: https://github.com/programiz/p....ython-course/blob/ma

Python Functions (text-based tutorial): https://www.programiz.com/pyth....on-programming/funct
Python built-in Functions: https://www.programiz.com/pyth....on-programming/metho


Watch our videos and revise them with our Python App!
Download here for Android: https://bit.ly/learn-python-android
Download here for iOS: https://apple.co/3iPm6Sx

Timestamps:
0:00 Intro
0:28 Python Functions
4:16 Function Arguments
6:00 Passing Multiple Arguments
7:31 return Statement
9:31 Types of Python Functions
11:36 Example: Compute Grade of a Student
15:31 Programming Task
16:01 Recap

Find Programiz elsewhere:
Facebook: https://www.facebook.com/programiz
Instagram: https://www.instagram.com/_programiz/
LinkedIn: https://www.linkedin.com/company/programiz
Website: https://www.programiz.com
-------------------------------------------------

Python Functions (The Only Guide You'll Need) #12

#python #learnprogramming #programiz

Donbright
21 Views · 4 months ago

In Python , the pass statement is a null statement that is used as a placeholder for future implementation of functions, loops, etc.
🔥 Want to learn Python, the right way? Get my interactive Python course: https://bit.ly/right-python

In this video, we will learn about the pass statement in Python. The difference between a comment and a pass statement in Python is that while the interpreter ignores a comment entirely, pass is not ignored. However, nothing happens when the pass is executed. It results in no operation (NOP).
~

Run Python Online: https://www.programiz.com/pyth....on-programming/onlin
Programs in this video: https://github.com/programiz/p....ython-course/blob/ma
Python pass Statement (text-based tutorial): https://www.programiz.com/pyth....on-programming/pass-
Python break and continue: https://youtu.be/Mho_1WO-ht4?l....ist=PL98qAXLA6afuh50

Watch our videos and revise them with our Python App!
Download here for Android: https://bit.ly/learn-python-android
Download here for iOS: https://apple.co/3iPm6Sx

Timestamps:
0:00 Intro
0:17 Python pass Statement
2:02 Recap

Find Programiz elsewhere:
Facebook: https://www.facebook.com/programiz
Instagram: https://www.instagram.com/_programiz/
LinkedIn: https://www.linkedin.com/company/programiz
Website: https://www.programiz.com
-------------------------------------------------

Pass Statement in Python (When to use it?) #11

#python #learnprogramming #programiz #passstatement

Donbright
3 Views · 4 months ago

A loop is a fundamental concept in all programming languages, not just Python. Loops are used to repeat a certain block of code.
🔥 Want to learn Python, the right way? Get my interactive Python course: https://bit.ly/right-python

In this video, we will learn about the for loop in Python. The for loop is used to loop over a sequence, one item at every iteration. We will learn about Python sequences, range() function, and looping through a Python list. At the end of the video, we will also learn to write a program to print the multiplication table of a specified number.

~
Run Python Online: https://www.programiz.com/pyth....on-programming/onlin
Programs in this video: https://github.com/programiz/p....ython-course/blob/ma
Python for loop (text-based tutorial): https://www.programiz.com/pyth....on-programming/for-l
Python while Loop: https://youtu.be/5AOfDuV6X30?l....ist=PL98qAXLA6afuh50

Watch our videos and revise them with our Python App!
Download here for Android: https://bit.ly/learn-python-android
Download here for iOS: https://apple.co/3iPm6Sx

Timestamps:
0:00 Intro
0:28 Python Sequences
1:18 Python for Loop
3:19 Looping through a List
3:59 Python range()
5:30 Multiplication Table using for
7:18 Programming Task
7:45 Recap

Find Programiz elsewhere:
Facebook: https://www.facebook.com/programiz
Instagram: https://www.instagram.com/_programiz/
LinkedIn: https://www.linkedin.com/company/programiz
Website: https://www.programiz.com

---------------------------------------------------

For Loop in Python (So Easy to Understand)

#python #learnprogramming #programiz #forloop

Donbright
5 Views · 4 months ago

In Python, break and continue statements can alter the flow of a normal loop.
🔥 Want to learn Python, the right way? Get my interactive Python course: https://bit.ly/right-python

In this video, we will learn about the break and continue statements in Python. The break statement completely terminates the loop containing it. The continue statement, on the other hand, skips the remaining code inside the loop only for that particular iteration.

~
Run Python Online: https://www.programiz.com/pyth....on-programming/onlin
Programs in this video: https://github.com/programiz/p....ython-course/blob/ma
Python break and continue (text-based tutorial): https://www.programiz.com/pyth....on-programming/break
Python for Loop: https://youtu.be/yaqMSBr_NCU?l....ist=PL98qAXLA6afuh50

Watch our videos and revise them with our Python App!
Download here for Android: https://bit.ly/learn-python-android
Download here for iOS: https://apple.co/3iPm6Sx

Timestamps:
0:00 Intro
0:35 Python break Statement
4:20 Python continue Statement
6:26 Programming Task
6:53 Recap

Find Programiz elsewhere:
Facebook: https://www.facebook.com/programiz
Instagram: https://www.instagram.com/_programiz/
LinkedIn: https://www.linkedin.com/company/programiz
Website: https://www.programiz.com
-------------------------------------------------

"break" & "continue" Statements in Python #10

#python #learnprogramming #programiz #pythonbreak #python continue

Donbright
1 Views · 4 months ago

A loop is a fundamental concept in all programming languages, not just Python. The while loop in Python is used to iterate over a block of code as long as the test expression (condition) is true.
🔥 Want to learn Python, the right way? Get my interactive Python course: https://bit.ly/right-python

In this video, we will learn about the while loop in Python. The while loop evaluates the test condition and runs the body of the loop as long as the test condition evaluates to true. At the end of the video, we will learn to write a program to print the multiplication table of a specified number.

~
Run Python Online: https://www.programiz.com/pyth....on-programming/onlin
Programs in this video: https://github.com/programiz/p....ython-course/blob/ma
Python while loop (text-based tutorial): https://www.programiz.com/pyth....on-programming/while
Python if...else statement: https://youtu.be/497MClrekMY?l....ist=PL98qAXLA6afuh50

Watch our videos and revise them with our Python App!
Download here for Android: https://bit.ly/learn-python-android
Download here for iOS: https://apple.co/3iPm6Sx

Timestamps:
0:00 Intro
0:33 Python while Loop
5:45 Multiplication Table using while
8:18 Programming Task
9:03 Recap

Find Programiz elsewhere:
Facebook: https://www.facebook.com/programiz
Instagram: https://www.instagram.com/_programiz/
LinkedIn: https://www.linkedin.com/company/programiz
Website: https://www.programiz.com
-------------------------------------------------

While Loop in Python (Perform a Task 1000000 times With Ease) #8\

#python #learnprogramming #programiz #whileloop

Donbright
4 Views · 4 months ago

Decision making is required when we want to execute a code only if a certain condition is satisfied.
The if…elif…else statement is used in Python for decision making.
🔥 Want to learn Python, the right way? Get my interactive Python course: https://bit.ly/right-python

In this video, we will learn about decision making in Python using the if...else statement. The if statement is used to execute certain blocks only when the test condition is true. It can also have an optional else clause that runs when the test condition is false. The if statement can also have multiple elif clauses to handle more than two test cases.

~
Run Python Online: https://www.programiz.com/pyth....on-programming/onlin
Programs in this video: https://github.com/programiz/p....ython-course/blob/ma
Python if...else (text-based tutorial): https://www.programiz.com/pyth....on-programming/if-el
Comparison & Logical Operators: https://www.youtube.com/watch?v=mrryXQnlYN8&list=PL98qAXLA6afuh50qD2MdAj3ofYjZR_Phn

Watch our videos and revise them with our Python App!
Download here for Android: https://bit.ly/learn-python-android
Download here for iOS: https://apple.co/3iPm6Sx

Timestamps:
0:00 Intro
0:40 Python if statement
3:50 Python if...else statement
5:51 Python if...elif...else statement
9:04 Programming Task
9:57 Recap

Find Programiz elsewhere:
Facebook: https://www.facebook.com/programiz
Instagram: https://www.instagram.com/_programiz/
LinkedIn: https://www.linkedin.com/company/programiz
Website: https://www.programiz.com
-------------------------------------------------

Python if...else Conditionals (for Decision Making) # 7

#python #learnprogramming #programiz #pythonifelse

Donbright
1 Views · 4 months ago

Boolean (sometimes shortened to Bool) is a data type that stores TRUE or FALSE data values as a single byte.
🔥 Want to learn Python, the right way? Get my interactive Python course: https://bit.ly/right-python

In this video, we will learn about the boolean data type in Python that represents either True or False. After that, we will cover comparison operators that allow us to compare two values. Finally, we will learn about logical operators that operate on two boolean values.

~
Run Python Online: https://www.programiz.com/pyth....on-programming/onlin
Programs in this video: https://github.com/programiz/p....ython-course/blob/ma

Watch our videos and revise them with our Python App!
Download here for Android: https://bit.ly/learn-python-android
Download here for iOS: https://apple.co/3iPm6Sx

Timestamps:
0:00 Intro
0:28 Boolean Data Type
1:19 Comparison Operator
2:45 Different Comparison Operators
5:31 Logical Operators
8:20 Programming Task
8:37 Recap

Find Programiz elsewhere:
Facebook: https://www.facebook.com/programiz
Instagram: https://www.instagram.com/_programiz/
LinkedIn: https://www.linkedin.com/company/programiz
Website: https://www.programiz.com
-------------------------------------------------

Python Booleans (Comparison & Logical Operators) #6

#python #learnprogramming #programiz #pythonbooleans #comparisonoperators

Donbright
1 Views · 4 months ago

Operators are special symbols in Python that carry out arithmetic or logical computation. The value that the operator operates on is called the operand.
🔥 Want to learn Python, the right way? Get my interactive Python course: https://bit.ly/right-python

In this video, we will learn Python operators to perform arithmetic operations such as addition, subtraction, multiplication, etc. on values and variables. We will also learn more about assignment operators. Finally, we will create a program to find the amount after the discount.
~

Run Python Online: https://www.programiz.com/pyth....on-programming/onlin
Programs in this video: https://github.com/programiz/p....ython-course/blob/ma
Python Operators (text-based tutorial): https://www.programiz.com/pyth....on-programming/opera

Watch our videos and revise them with our Python App!
Download here for Android: https://bit.ly/learn-python-android
Download here for iOS: https://apple.co/3iPm6Sx

Timestamps:
0:00 Intro
0:51 Arithmetic Operations
5:46 Concatenate Two Strings
6:30 More Assignment Operators
8:25 Implementing what we learned
9:48 Programming Task
10:30 Recap

Find Programiz elsewhere:
Facebook: https://www.facebook.com/programiz
Instagram: https://www.instagram.com/_programiz/
LinkedIn: https://www.linkedin.com/company/programiz
Website: https://www.programiz.com
-------------------------------------------------

Operators in Python #5

#python #learnprogramming #programiz #pythonoperators

Donbright
3 Views · 4 months ago

Comments are descriptions that help programmers better understand the intent and functionality of the program.
🔥 Want to learn Python, the right way? Get my interactive Python course: https://bit.ly/right-python

This video covers the essentials of Python comments. We will also learn to use comments to prevent the execution of certain code blocks temporarily for debugging purposes. We will finally discuss why comments are important while writing code.
~

Run Python Online: https://www.programiz.com/pyth....on-programming/onlin
Programs in this video: https://github.com/programiz/p....ython-course/blob/ma
Python Comments (text-based tutorial): https://www.programiz.com/pyth....on-programming/comme

Watch our videos and revise them with our Python App!
Download here for Android: https://bit.ly/learn-python-android
Download here for iOS: https://apple.co/3iPm6Sx

Timestamps:
0:00 Intro
0:16 Python Comments
1:49 Prevent Executing Code Using Comments
3:38 Python Multiline Comments
6:08 Why are Comments Important?
7:10 Recap

Find Programiz elsewhere:
Facebook: https://www.facebook.com/programiz
Instagram: https://www.instagram.com/_programiz/
LinkedIn: https://www.linkedin.com/company/programiz
Website: https://www.programiz.com
-------------------------------------------------

Python Comments (How to Create and Use Comments?) #4

#python #learnprogramming #programiz #pythoncomments

Donbright
2 Views · 4 months ago

The Python input() function takes input from the user in string format and returns it.
🔥 Want to learn Python, the right way? Get my interactive Python course: https://bit.ly/right-python

In this video, we will learn to convert these input values to integers and floating-point numbers using int() and float() functions.

~
Run Python Online: https://www.programiz.com/pyth....on-programming/onlin
Programs in this video:https://github.com/programiz/p....ython-course/blob/ma
Python Input and Output (text-based tutorial): https://www.programiz.com/pyth....on-programming/input

Watch our videos and revise them with our Python App!
Download here for Android: https://bit.ly/learn-python-android
Download here for iOS: https://apple.co/3iPm6Sx

Timestamps:
0:00 Introduction
0:51 Take input from the user
2:49 Check the type of user input
4:25 Convert strings to integers and floats
6:31 Non-numeric strings to numbers
7:25 Recap

Find Programiz elsewhere:
Facebook: https://www.facebook.com/programiz
Instagram: https://www.instagram.com/_programiz/
LinkedIn: https://www.linkedin.com/company/programiz
Website: https://www.programiz.com
-------------------------------------------------

How to Take User Input in Python? #3

#python #learnprogramming #programiz #pythoninput

Donbright
11 Views · 4 months ago

The print() function prints the given object to the standard output device (screen) or to the text stream file.
🔥 Want to learn Python, the right way? Get my interactive Python course: https://bit.ly/right-python

This video also covers a concept called variables that allows us to store data so that we can use them later in our program. Here, we will learn to print variables and give good variable names so that our code is easier to understand.

~
Run Python Online: https://www.programiz.com/pyth....on-programming/onlin
Programs in this video: https://bit.ly/python-variables-programs
Python Variables (text-based tutorial): https://www.programiz.com/pyth....on-programming/varia

Watch our videos and revise them with our Python App!
Download here for Android: https://bit.ly/learn-python-android
Download here for iOS: https://bit.ly/learn-python-ios

Timestamps:
0:00 Start
0:30 How to print strings?
1:34 How to print numbers (integers and floating-point numbers)?
2:55 Variables in Python
4:29 Change variable values
6:01 Assigning numeric data to variables
7:07 Print more than one data in a single print() function
9:04 How to give good variable names?
10:27 Recap on what we learned

Find Programiz elsewhere:
Facebook: https://www.facebook.com/programiz
Instagram: https://www.instagram.com/_programiz/
LinkedIn: https://www.linkedin.com/company/programiz/
Website: https://www.programiz.com/
-------------------------------------------------

Python Print Values & Variables in Python #2

#python #learnprogramming #programiz

Donbright
4 Views · 4 months ago

Python is a powerful general-purpose programming language. It is used in web development, data science, creating software prototypes, and so on.
🔥 Want to learn Python, the right way? Get my interactive Python course: https://bit.ly/right-python

In this video, we will see why Python is a good choice for beginners to start their programming journey. Then, we will create our first Python program.
~

Run Python Online: https://www.programiz.com/pyth....on-programming/onlin
Programs in this video: https://github.com/programiz/p....ython-course/blob/ma
Python Tutorials (text-based): https://www.programiz.com/python-programming

Watch our videos and revise them with our Python App!
Download here for Android: https://bit.ly/learn-python-android
Download here for iOS: https://apple.co/3iPm6Sx

Timestamps:
0:00 Start
0:37 Why Python is a good choice for beginners?
1:18 Python applications
2:15 Writing our first Python program

Find Programiz elsewhere:
Facebook: https://www.facebook.com/programiz
Instagram: https://www.instagram.com/_programiz
LinkedIn: https://www.linkedin.com/company/programiz
Website: https://www.programiz.com

Run Python on your computer: https://thonny.org

What is Python? (Python Tutorial for Beginners) #1

#python #learnprogramming #programiz

C1C2
52 Views · 4 months ago

Learn the fundametnals of MATLAB in this tutorial for engineers, scientists, and students. MATLAB is a programming language and software suite used for data analysis, scientific computing, and visualization that is widely used in academia and industry.

✏️ Course from Phillip Parisi. Check out his channel: https://youtube.com/c/philsbeginnercode
This course on Phillip's channel: https://youtu.be/EtUCgn3T9eE

⭐️ MATLAB Cheat Sheet ⭐️
Functions You Should Know https://youtu.be/vqWCUuDs8vw
PDF of All the Basics https://philparisi.weebly.com/code.html

⭐️ Install Matlab ⭐️
Windows https://youtu.be/UShLTO57Yp8
Ubuntu Install https://youtu.be/ZNHJkCo5sOc

⭐️ Contents ⭐️
⌨️(0:00:00) Intro
⌨️(0:00:19) MATLAB IDE
⌨️(0:01:33) Variables & Arithmetic
⌨️(0:14:19) Matrices, Arrays, & Linear Algebra
⌨️(0:24:54) The Index
⌨️(0:31:16) Example 1 - Equations
⌨️(0:45:09) Anonymous Functions
⌨️(0:47:57) Example 2 - Plotting
⌨️(1:05:29) Example 3 - Logic
⌨️(1:20:24) Example 4 - Random & Loops
⌨️(1:26:07) Sections
⌨️(1:28:20) For Loops
⌨️(1:40:09) Calculation Time
⌨️(1:42:57) Naming Conventions
⌨️(1:45:09) File Naming
⌨️(1:45:54) While Loop
⌨️(1:50:16) Custom Function
⌨️(1:56:47) Have a good one ;)

🎉 Thanks to our Champion and Sponsor supporters:
👾 Nattira Maneerat
👾 Heather Wcislo
👾 Serhiy Kalinets
👾 Erdeniz Unvan
👾 Justin Hual
👾 Agustín Kussrow
👾 Otis Morgan

--

Learn to code for free and get a developer job: https://www.freecodecamp.org

Read hundreds of articles on programming: https://freecodecamp.org/news

❤️ Support for this channel comes from our friends at Scrimba – the coding platform that's reinvented interactive learning: https://scrimba.com/freecodecamp

C1C2
4 Views · 4 months ago

📢 Learn SOLIDWORKS in Just 12 Hours! 🚀
This Complete SOLIDWORKS 3D CAD Course covers everything from basic to expert level, making it ideal for mechanical engineers, students, and professionals. Whether you're a beginner or looking to upgrade your skills, this course provides hands-on training for part modeling, assemblies, sheet metal, rendering, and simulation.

📌 Who Should Watch This Course?
✅ Mechanical Engineers & CAD Designers
✅ Students & Professionals Seeking Industry-Level CAD Skills
✅ Anyone Preparing for SOLIDWORKS Certification

📢 Looking for Hands-On Training & Certification? Contact Us!
📧 Email: career@4di.in
📞 Call/WhatsApp: +91 9168444457

💬 Have questions? Drop a comment below!
🔔 Like, Share & Subscribe for more CAD tutorials!

🌐 Follow Us for More CAD & 3D Design Tutorials:
✅ Website: www.4di.in
📷 Instagram: https://www.instagram.com/4dimensions_infotech
📘 Facebook: https://www.facebook.com/profi....le.php?id=1000925860
🔗 LinkedIn: https://www.linkedin.com/compa....ny/4dimensions-infot

Disclaimer:
Some images, notes, and other reference materials used in this video are sourced from third-party platforms or public domains. All rights and copyrights belong to their respective owners. We do not claim ownership of any such content and use it strictly for educational and informational purposes under the Fair Use policy. If you are a copyright holder and believe your content has been used inappropriately, please contact us directly for prompt action.

C1C2
21 Views · 4 months ago

🚀 Loved the tutorial? Take it further with Programiz PRO!
Refine your skills, conquer coding fears, and build confidence with interactive lessons, quizzes, and challenges. Strengthen your programming foundation and master C today!
👉Start Here: https://bit.ly/c-master

This C Programming course for beginners will teach you all the concepts of C Programming, step-by-step. And by the end, you will become a C programmer ready to create amazing projects.

Online C Compiler: https://www.programiz.com/c-pr....ogramming/online-com
Programming Tasks Solution: https://github.com/programiz/c-youtube

📖 Content
---------------------------------------------------
0:25 - Introduction to C Programming
5:05 - C Variables and Constants
14:19 - Data types in C
23:39 - Take Input and Print Output in C Programming
30:35 - Comments in C Programming
37:18 - Operators in C
48:16 - Type conversion
57:34 - C Booleans and Comparison Operators
1:11:10 - if else Statements
1:23:20 - Ternary operator
1:29:02 - Switch Statement
1:39:45 - while Loop
1:51:29 - for Loop
2:01:31 - break and continue Statement
2:11:03 - Functions in C
2:27:54 - Variable Scope and Storage Class
2:31:44 - C Standard Library Functions
2:41:01 - Recursion
2:46:08 - Arrays
2:58:37 - Multidimensional Arrays
3:08:52 - String
3:18:02 - String Functions
3:27:01 - Pointers
3:37:03 - Pointers and Arrays
3:45:52 - Pointers and function
3:55:17 - Struct
4:08:14 - enum
4:15:15 - Dynamic memory allocation
4:26:37 - File handling
4:37:34 - Preprocessor and Macros

Find Programiz elsewhere:
Programiz PRO: https://programiz.pro/
Website: https://www.programiz.com

Connect with us 👋
---------------------------------------------------
Facebook: https://www.facebook.com/programiz
Instagram: https://www.instagram.com/_programiz/
LinkedIn: https://www.linkedin.com/company/programiz
Twitter: https://twitter.com/programiz
Discord: https://discord.gg/d4gAS458ZZ

▬▬▬▬▬▬ S P E C I A L O F F E R 🎉 ▬▬▬▬▬▬
Want to get hands-on experience with C Programming?

Learn to code in C by writing code yourself. Here's how it works:

► Learn a programming concept
► Solve quizzes and challenges related to it
► Create projects (guessing game, rock paper scissors, etc.) at the end of the course
► Try 100+ challenges for further practice

Course link: https://bit.ly/learncprogramming
Discount Code: YOUTUBE50 (50% OFF)

---------------------------------------------------

C Programming Full Course for Beginners - Learn C in 2022

#programiz #ctutorial #fullcprogramming #cprogramming #learnprogramming #ctutorials #coding

C1C2
19 Views · 4 months ago

#30: Preprocessor and Macros | C Programming for Beginners

In this video, we will learn about preprocessors and macros. We have been using preprocessor in all our programs. Similarly, we will learn about macros, macros are a piece of code that is given some name. For example, #define PI 3.1415, here PI is a macro. So, from this video, you will know the exact meaning and use of preprocessor and macros with specific examples.

Sign Up to get 50% off with this link: https://app.programiz.pro/signup?utm_source=social&utm_medium=youtube

This video is a part of our C Programming video series: https://www.youtube.com/watch?v=KnvbUiSxvbM&list=PL98qAXLA6aftD9ZlnjpLhdQAOFI8xIB6e

~
Resources:
C Online Compiler: https://www.programiz.com/c-pr....ogramming/online-com
Github File: https://github.com/programiz/c-youtube
C (title) Tutorial (text-based tutorial): https://www.programiz.com/c-pr....ogramming/c-preproce

Timestamps:
00:55 - #include Preprocessor
04:24 - #define Preprocessor
06:45 - Define Function Macros
07:59 - Programming Task
08:42 - Quiz

Revise your learning using our C App
Download here for Android: https://bit.ly/3upaInx
Download here for iOS: https://apple.co/3EZLtNq

Find Programiz elsewhere:
Programiz PRO: https://programiz.pro/
Website: https://www.programiz.com
Discord: https://discord.com/invite/programiz

Facebook: https://www.facebook.com/programiz
Instagram: https://www.instagram.com/_programiz/
LinkedIn: https://www.linkedin.com/company/programiz
Twitter: https://twitter.com/programiz

#programiz #preprocessor #macros #c #include #define #cprogramming

C1C2
19 Views · 4 months ago

#29: C File Handling | C Programming for Beginners

In this video, we will learn to work with files in C programming. More specifically, we will learn to perform file operations like read content from the file, write content to file.
In C programming, there are usually 3 steps involved while working with files:
1. Open a file
2. Perform File Operation
3. Close the file
We will learn all about the file handling with examples in the video.

Sign Up to get 50% off with this link: https://app.programiz.pro/signup?utm_source=social&utm_medium=youtube

This video is a part of our C Programming video series: https://www.youtube.com/watch?v=KnvbUiSxvbM&list=PL98qAXLA6aftD9ZlnjpLhdQAOFI8xIB6e

~
Resources:
C Online Compiler: https://www.programiz.com/c-pr....ogramming/online-com
Github File: https://github.com/programiz/c....-youtube/blob/master
C (title) Tutorial (text-based tutorial): https://www.programiz.com/c-pr....ogramming/c-file-inp

Timestamps:
00:30 - Open a File
04:38 - Read File Content
07:00 - Closing File
08:02 - Write Content to File
11:30 - Programming Task
11:57 - Quiz
~

Revise your learning using our C App
Download here for Android: https://bit.ly/3upaInx
Download here for iOS: https://apple.co/3EZLtNq

Find Programiz elsewhere:
Programiz PRO: https://programiz.pro/
Website: https://www.programiz.com
Discord: https://discord.com/invite/programiz

Facebook: https://www.facebook.com/programiz
Instagram: https://www.instagram.com/_programiz/
LinkedIn: https://www.linkedin.com/company/programiz
Twitter: https://twitter.com/programiz

#programiz #cprogramming #c #filehandling #readfile #closefile #write

C1C2
6 Views · 4 months ago

#28: Dynamic Memory Allocation in C | C Programming for Beginners

In this video, we will learn about dynamic memory allocation in C programming. More specifically, we will learn to allocate and destroy memory addresses while running the C program. Dynamic memory allocation allows us to allocate memory dynamically. C provides 3 major functions to perform dynamic memory allocation: malloc(), realloc(), and free(). We will now learn about each one of them with examples.

Sign Up to get 50% off on PRO: https://app.programiz.pro/signup?utm_source=social&utm_medium=youtube

This video is a part of our C Programming video series: https://www.youtube.com/watch?v=KnvbUiSxvbM&list=PL98qAXLA6aftD9ZlnjpLhdQAOFI8xIB6e

~
Resources:
C Online Compiler: https://www.programiz.com/c-pr....ogramming/online-com
Github File: https://github.com/programiz/c....-youtube/blob/master
C (title) Tutorial (text-based tutorial): https://www.programiz.com/c-pr....ogramming/c-dynamic-

Timestamps:
01:13 - malloc() function
02:56 - free() function
08:11 - realloc() function
11:04 - Programming Task
11:50- Quiz
~

Revise your learning using our C App
Download here for Android: https://bit.ly/3upaInx
Download here for iOS: https://apple.co/3EZLtNq

Find Programiz elsewhere:
Programiz PRO: https://programiz.pro/
Website: https://www.programiz.com
Discord: https://discord.com/invite/programiz

Facebook: https://www.facebook.com/programiz
Instagram: https://www.instagram.com/_programiz/
LinkedIn: https://www.linkedin.com/company/programiz
Twitter: https://twitter.com/programiz

#programiz #dynamicmemoryallocation #cprogramming #learncprogramming #codinginc




Showing 10 out of 11