ViewTube

ViewTube
Sign inSign upSubscriptions
Filters

Upload date

Type

Duration

Sort by

Features

Reset

7,178,910 results

HuwsTube
Characters and Strings – What’s The Difference? (Learn To Program With Huw)

A character is a fundamental data type. But a string is not. Sometimes when you add two characters together you end up with a ...

6:14
Characters and Strings – What’s The Difference? (Learn To Program With Huw)

3,698 views

4 years ago

Portfolio Courses
String In Char Array VS. Pointer To String Literal | C Programming Tutorial

The difference between a string stored in a char array vs. a pointer to a string literal in C. In other words the difference between: ...

9:58
String In Char Array VS. Pointer To String Literal | C Programming Tutorial

289,756 views

3 years ago

Neso Academy
Dealing with Characters in a String

C++ Programming: Dealing with Characters in a String in C++ Topics discussed: 1. The need for processing characters in strings.

6:50
Dealing with Characters in a String

11,407 views

3 years ago

Portfolio Courses
String Basics | C Programming Tutorial

The basics of using strings in C. Source code: https://github.com/portfoliocourses/c-example-code/blob/main/string_basics.c.

8:02
String Basics | C Programming Tutorial

58,321 views

4 years ago

Portfolio Courses
Remove Non Alphabet Characters A From String | C Programming Example

How to remove the non-alphabetic characters from a string using C. Source code: ...

10:13
Remove Non Alphabet Characters A From String | C Programming Example

5,160 views

2 years ago

Portfolio Courses
Find The Characters Common To Two Strings | C Programming Example

How to find the unique characters that are common to two strings using C. Source code: ...

12:06
Find The Characters Common To Two Strings | C Programming Example

1,728 views

4 months ago

Programiz
#21 C Strings | [2025] C Programming For Beginners

21 C Strings | C Programming For Beginners In this video, we will learn about strings in C. With many examples we will show you ...

10:13
#21 C Strings | [2025] C Programming For Beginners

226,337 views

4 years ago

People also watched

CppCon
Back To Basics: C++ Strings and Character Sequences - Nicolai Josuttis - CppCon 2025

https://cppcon.org --- Back To Basics: C++ Strings and Character Sequences - Nicolai Josuttis - CppCon 2025 --- Strings are a key ...

1:05:18
Back To Basics: C++ Strings and Character Sequences - Nicolai Josuttis - CppCon 2025

7,706 views

2 months ago

lazy tutorials
Print Specific Characters in a String - Python Programming Challenges

This tutorial will teach you how to extract specific characters from a string. This tutorial is part of the Python Challenges series and ...

3:44
Print Specific Characters in a String - Python Programming Challenges

11,438 views

6 years ago

ProgrammerTube
How to remove a character (char) from a string in C/C++

In this video, I will walk you through the example of removing a character 'l' from the word 'Hello' then we will write the code using ...

6:16
How to remove a character (char) from a string in C/C++

62,173 views

9 years ago

Portfolio Courses
Find The First Occurrence Of A Character In A String | C Programming Example

How to find the first occurrence of a character in a string using C. Source code: ...

8:25
Find The First Occurrence Of A Character In A String | C Programming Example

5,296 views

3 years ago

Visually Explained
Python Strings - Visually Explained

Resources & Further Learning - Practice notebook → https://go.visuallyexplained.co/strings-practice Gear & Support the ...

5:27
Python Strings - Visually Explained

12,346 views

2 months ago

Portfolio Courses
Remove All The Characters In A String That Occur In Another String | C Programming Example

How to remove all the characters from the first string that are present in the second string using C. Source code: ...

9:55
Remove All The Characters In A String That Occur In Another String | C Programming Example

4,057 views

3 years ago

Programming with Mosh
How to Use Strings in Python - Python Tutorial for Beginners

How to use strings in Python. Learn Python basics with this Python tutorial for beginners. Subscribe for more Python tutorials ...

16:46
How to Use Strings in Python - Python Tutorial for Beginners

296,260 views

7 years ago

Nikorasu Def
Python Course (from scratch) Visual Studio Code - Strings #3

In the third part of the Python course (from scratch) with Visual Studio Code, we'll cover: - What strings are - How to ...

5:40
Python Course (from scratch) Visual Studio Code - Strings #3

59,406 views

2 years ago

Portfolio Courses
Count The Occurrences Of A Character In A String Using Recursion | C Programming Example

How to count the occurrences of a character in a string using recursion in C. Source code: ...

7:02
Count The Occurrences Of A Character In A String Using Recursion | C Programming Example

3,486 views

3 years ago

Techdose
Extra Characters in a String | Leetcode 2707

This video explains the problem of finding a minimum number of characters by breaking the given string into words already ...

16:43
Extra Characters in a String | Leetcode 2707

2,612 views

1 year ago

Portfolio Courses
Count Occurrences Of Each Character In A String | C Programming Example

Example of how to print the first repeating character in a string in C. Source code: ...

6:39
Count Occurrences Of Each Character In A String | C Programming Example

31,150 views

4 years ago

Professor Hank Stalica
C++ Tutorial: Working with Characters and String Objects [7]

Special functions exist for working with characters and string objects. Learn how to use them to properly manage character and ...

14:14
C++ Tutorial: Working with Characters and String Objects [7]

3,686 views

2 years ago

Bro Code
Arrays of strings in C explained! 🧵

coding #programming #cprogramming // array of strings = Typically a 2D character array, // where each row is a character // array ...

12:41
Arrays of strings in C explained! 🧵

20,152 views

11 months ago

Error Makes Clever
Master the Core of String Problems – 5 Challenges You Must Solve! #shorts #coding

Join our Live 4 Month Job-Ready BOOTCAMPS: Full Stack Development – Build web apps from scratch ...

0:26
Master the Core of String Problems – 5 Challenges You Must Solve! #shorts #coding

219,508 views

8 months ago

Portfolio Courses
Removing all occurrences of a character from a string | C Programming Example

An example of removing all occurrences of a character from a string in C. Source code: ...

7:06
Removing all occurrences of a character from a string | C Programming Example

12,735 views

4 years ago

LearningLad
C Program to Print String Characters One By One using Loop

In this video tutorial on c programming you will learn how to write a c program to Print String One By One Characters using Loop in ...

9:20
C Program to Print String Characters One By One using Loop

101,389 views

9 years ago

NeetCodeIO
Extra Characters in a String - Leetcode 2707 - Python

Solving Leetcode 2707 - Extra characters in a String, today's daily leetcode problem on september 1st. https://neetcode.io/ - A ...

21:11
Extra Characters in a String - Leetcode 2707 - Python

23,726 views

2 years ago

Learn Coding Skills
Simplest Way to Check if All Characters in String are Alphabet! Python #shorts #python #programming
0:17
Simplest Way to Check if All Characters in String are Alphabet! Python #shorts #python #programming

3,709 views

3 years ago

Portfolio Courses
Replace a character in a string with another character | C Programming Example

An example of a function to replace all occurrences of a character in a string with another character using C. Source code: ...

3:56
Replace a character in a string with another character | C Programming Example

34,806 views

4 years ago