Upload date
All time
Last hour
Today
This week
This month
This year
Type
All
Video
Channel
Playlist
Movie
Duration
Short (< 4 minutes)
Medium (4-20 minutes)
Long (> 20 minutes)
Sort by
Relevance
Rating
View count
Features
HD
Subtitles/CC
Creative Commons
3D
Live
4K
360°
VR180
HDR
8,359 results
Retaining Values in a Function | Static Variables in C Explained How do you retain values inside a function between calls?
5 views
9 months ago
Discover how to manage and access `static` variables in C across multiple files, understand linkage, and avoid linker errors in ...
8 views
7 months ago
Explore the reasons why static variables may not hold their expected values in C, common pitfalls, and effective debugging ...
1 view
Understanding Variable Scope in C | Local, Global, and Static Explained Ever wondered how variable scope works in C ...
13 views
10 months ago
Struggling with static variables in C and trying to refactor code into sub-functions? This guide offers practical solutions and insights ...
C++ Programming: Static Data Members in C++ Topics discussed: 1. Introduction to Static Data Members 2. Declaration ...
3,186 views
2 months ago
Learn the difference between initialization of static variables in C, how they function across function calls, and why variables do ...
2 views
In this video we take a look at some of the different usages of static variables in C++.
Learn the essentials of handling `static variables` in OpenCL C and discover how to effectively resolve compilation issues.
Explore the causes of unexpected core dumps in C++11 multithreaded programs due to data races on local static variables and ...
SmallCodeLearns_1 Welcome to Small Code Learns! In this video, you'll learn what static properties are in C#, how they work, ...
14 views
Discover how to correctly access a static variable declared in one C source file from another file without using `extern` or pointers.
4 views
Understanding the dangers of using `free()` on `automatic` and `static` variables in C. Learn how misuse can lead to undefined ...
11 months ago
Ever wondered how a variable can remember its value even after the function ends? In this video, we explore how the static ...
Discover the causes of static variable resetting in C, particularly focused on buffer overflow issues. Learn how to fix the problem ...
0 views
Explore the interesting behavior of declaring the same `static variable` twice in global scope in C. Learn why this doesn't cause a ...
Initialization: The initialization of the static variable occurs during the first call to the function. This means that the constructor for the ...
Explore the nuances of the `static` variable in C programming. Discover why its initialization rules matter and how they affect the ...
5 months ago
Here's the main uses of statics in Cpp. Providing this as a quick reference rather than a deep dive. Since it can be confusing as to ...
374 views
Here's the proper way to do so: Step-by-Step Example: Declare the Static Variable within the Class: [[See Video to Reveal this ...