ViewTube

ViewTube
Sign inSign upSubscriptions
Filters

Upload date

Type

Duration

Sort by

Features

Reset

191 results

Jakubication
String In Char Array vs. Pointer To String Literal In C

This video shows the difference between a string in a char array vs a pointer to a string literal in C. Basically, it will cover the ...

2:50
String In Char Array vs. Pointer To String Literal In C

793 views

7 months ago

Soren I. Ngo
Pointers and Arrays (Overview): The relationship between array names and pointers - L4 - S6

This lesson belongs to Section 06: Basic Pointers --- Watch the full C Programming for Beginners Course here: ...

3:47
Pointers and Arrays (Overview): The relationship between array names and pointers - L4 - S6

4 views

1 month ago

Jakubication
initialization from incompatible pointer type

The fix the C warning, initialization from incompatible pointer type, make sure you don't declare an integer pointer by prefixing the ...

0:46
initialization from incompatible pointer type

9 views

10 months ago

Tsoding Daily
I made My Own Pointers

Streamed Live on Twitch: https://twitch.tv/tsoding Enable Subtitles for Twitch Chat Chapters: - 00:00:00 - Intro - 00:04:38 ...

1:53:25
I made My Own Pointers

44,534 views

7 months ago

Soren I. Ngo
Pointers: Address-of (&) and Dereference (*) Operators - L3 - S6 - C Programming for Beginners

This lesson belongs to Section 06: Basic Pointers --- Watch the full C Programming for Beginners Course here: ...

3:09
Pointers: Address-of (&) and Dereference (*) Operators - L3 - S6 - C Programming for Beginners

4 views

1 month ago

Jakubication
error: subscripted value is neither array nor pointer nor vector

To fix the C error: subscripted value is neither array nor pointer nor vector is very simple. If you are subscripting into a value, first ...

0:31
error: subscripted value is neither array nor pointer nor vector

19 views

10 months ago

Jakubication
C strtol

In C, strtol converts a string to a long integer. Additionally, it returns a pointer to any other part of the string after the part that ...

2:13
C strtol

279 views

7 months ago

Start Coding
Pointer Arithmetic Array Pointers | Pointer to Array vs Array of Pointers | C Programming Course #29

Pointer Arithmetic Array Pointers | Pointer to Array vs Array of Pointers | C Programming Course #cprogrammingcourse ...

33:39
Pointer Arithmetic Array Pointers | Pointer to Array vs Array of Pointers | C Programming Course #29

14 views

7 months ago

Redlint
After all, what are POINTERS in C Language? Learn in less than 3 minutes! #cpointers #tutorial

Pointers are one of the main features of the C language, and what makes it one of the most powerful programming languages ​​in ...

3:00
After all, what are POINTERS in C Language? Learn in less than 3 minutes! #cpointers #tutorial

8,864 views

8 months ago

Code and Tech Hub
pointers to arrys and pointers to function C++ coding

Learn everything about Pointers to Functions and Pointers to Arrays in C++ with easy examples and step-by-step explanations!

18:11
pointers to arrys and pointers to function C++ coding

10 views

8 months ago

PicoBit
How Return Value in C Works – Complete Guide to 6 Essential Methods

YouTube Timestamp (Chapters) ▶️ 00:00 – Introduction ▶️ 01:13 – What Is a Return Value in C? ▶️ 01:43 – Method 1: ...

15:36
How Return Value in C Works – Complete Guide to 6 Essential Methods

35 views

1 month ago

Code with Gulshid
Problem No#43: Find the Largest Element of an Array Using Pointer in C++ | Pointer Example

This problem will help you understand how pointers and arrays are connected and how to use pointers for array traversal ...

6:24
Problem No#43: Find the Largest Element of an Array Using Pointer in C++ | Pointer Example

27 views

2 months ago

RainD
C/C++ Tutorial for beginners - Lesson 17: Pointer

Blog: - https://www.raind.blog/ 中文教學: - https://www.raind.blog/c&cpp-zh/c&cpp_tutorial15_pointer Contact: - Linkedin: ...

4:17
C/C++ Tutorial for beginners - Lesson 17: Pointer

12 views

3 months ago

Start Coding
Function Pointer in C | Function Pointer Array | Pass by Address | C Programming Course #30

Function Pointer in C | Function Pointer Array | Pass by Address | C Programming Course #cprogrammingcourse #cprogramming ...

28:23
Function Pointer in C | Function Pointer Array | Pass by Address | C Programming Course #30

10 views

7 months ago

Low Level Game Dev
The 5 Levels Of C++

Check out my Failproof OpenGL course for beginners: https://www.udemy.com/course/failproof-opengl-for-beginners/?

10:29
The 5 Levels Of C++

206,474 views

6 months ago

Soren I. Ngo
Pointer Arithmetic: Adding/Subtracting integers with pointers - 01.02 - Intermediate C Programming

This lesson belongs to Section 01: Advanced Pointers.

3:34
Pointer Arithmetic: Adding/Subtracting integers with pointers - 01.02 - Intermediate C Programming

15 views

1 month ago

RainD
C/C++ Tutorial for beginners - Lesson 24: Double Pointer

Blog: - https://www.raind.blog/ Contact: - Linkedin: https://www.linkedin.com/in/rain-ho-2164a9106/ - Email: ...

8:24
C/C++ Tutorial for beginners - Lesson 24: Double Pointer

21 views

3 months ago

Re: cOg Mission
Performance of Parallel Jobs, Burst Compiler and Pointers in a Real Game Setting

After some comments on my recent culling video, and discussions about the performance of different approaches to threading, ...

9:40
Performance of Parallel Jobs, Burst Compiler and Pointers in a Real Game Setting

410 views

1 month ago

WhiteboardDoodles
C Programming Language Overview: Features, Syntax & Uses | How It Works & Why It's Still Relevant?

C is one of the most powerful and widely used programming languages, forming the backbone of many modern technologies.

22:02
C Programming Language Overview: Features, Syntax & Uses | How It Works & Why It's Still Relevant?

4,165 views

10 months ago

UM-Dearborn CECS
UM-Dearborn | CECS | ELC | Pointers

In this video, Andrew Pearson, CIS tutor, provides an in-depth introduction to pointers in C++. Starting with a basic overview, ...

17:44
UM-Dearborn | CECS | ELC | Pointers

29 views

10 months ago

Cyber CodeX
🔥 CS25C01 - CP : Lab | EX 5 - Programs Using Pointers, Dynamic Memory & Arrays|Tamil Ex| Cyber Codex

CS25C01 - Computer Programming Laboratory (Anna University R-2021) Experiment No: 5 – Programs using Pointers, ...

8:36
🔥 CS25C01 - CP : Lab | EX 5 - Programs Using Pointers, Dynamic Memory & Arrays|Tamil Ex| Cyber Codex

130 views

2 months ago

Jakubication
error: invalid type argument of unary '*' (have 'int')

To fix the C error: invalid type argument of unary '*' (have 'int'), only dereference pointers, arrays or vectors. #cprogramming ...

0:35
error: invalid type argument of unary '*' (have 'int')

38 views

10 months ago

CS 161 (Computer Security) at UC Berkeley
[MemSafety2, Video 4] Overwriting Commands and Function Pointers

Course website: https://sp25.cs161.org/ Slides: ...

5:00
[MemSafety2, Video 4] Overwriting Commands and Function Pointers

469 views

10 months ago

Code with Gulshid
Problem No#42: Print Array Elements in Reverse Order Using Pointer in C++ | Pointer & Array Exampl

In this video (Problem No#42), you'll learn how to display array elements in reverse order using pointers in C++. We'll explore ...

6:05
Problem No#42: Print Array Elements in Reverse Order Using Pointer in C++ | Pointer & Array Exampl

14 views

2 months ago

Soren I. Ngo
Pointers: Pointers as variables that store the memory address of another variable - L2 - S6

This lesson belongs to Section 06: Basic Pointers --- Watch the full C Programming for Beginners Course here: ...

3:18
Pointers: Pointers as variables that store the memory address of another variable - L2 - S6

5 views

1 month ago