ViewTube

ViewTube
Sign inSign upSubscriptions
Filters

Upload date

Type

Duration

Sort by

Features

Reset

3,517,599 results

Portfolio Courses
Error Handling | C Programming Tutorial

An overview of how to use error handling functionalities in C. Source code: ...

8:23
Error Handling | C Programming Tutorial

20,764 views

4 years ago

Jacob Sorber
Can I Handle Exceptions with Try Catch in C? (setjmp, longjmp)

Patreon ➤ https://www.patreon.com/jacobsorber Courses ➤ https://jacobsorber.thinkific.com Website ...

11:13
Can I Handle Exceptions with Try Catch in C? (setjmp, longjmp)

35,388 views

4 years ago

Portfolio Courses
Exception Handling | C++ Tutorial

How to handle exceptions in C++, where exception handling is a technique for handling unwanted or unexpected events during ...

14:49
Exception Handling | C++ Tutorial

45,228 views

2 years ago

Jacob Sorber
Handling Errors in C/Unix (perror, strerror, errno)

Patreon ➤ https://www.patreon.com/jacobsorber Courses ➤ https://jacobsorber.thinkific.com Website ...

6:36
Handling Errors in C/Unix (perror, strerror, errno)

42,386 views

7 years ago

Bro Code
C# exception handling ⚠️

C# exception handling tutorial example explained #C# #exception #handling using System; namespace MyFirstProgram { class ...

5:01
C# exception handling ⚠️

67,233 views

4 years ago

The Cherno
C++ FINALLY Improved Error Handling with std::expected!

... Life before std::expected 8:07 - Using std::expected for error handling 12:25 - Some more useful features of std::expected 17:06 ...

22:31
C++ FINALLY Improved Error Handling with std::expected!

69,483 views

5 months ago

Nir Lichtman
The Importance of Error Handling in C

Error handling is one of the most important things you need to do in order to write good production level C code You can get the ...

8:18
The Importance of Error Handling in C

36,012 views

2 years ago

People also watched

CppCon
Failing Successfully: Reporting and Handling Errors - Robert Leahy - CppCon 2021

https://cppcon.org/ https://github.com/CppCon/CppCon2021 --- Writing code which successfully accomplishes a task is difficult.

50:33
Failing Successfully: Reporting and Handling Errors - Robert Leahy - CppCon 2021

24,921 views

3 years ago

Ankpro Training
C# Beginner to advanced - Lesson 34 - Exception Handling (try, catch, throw and finally)

Types of Errors: In programming language, whenever we write a piece of code, then we compile and execute. In this situation we ...

15:37
C# Beginner to advanced - Lesson 34 - Exception Handling (try, catch, throw and finally)

37,967 views

9 years ago

CppCon
CppCon 2018: Andrei Alexandrescu “Expect the expected”

http://CppCon.org — Presentation Slides, PDFs, Source Code and other presenter materials are available at: ...

58:58
CppCon 2018: Andrei Alexandrescu “Expect the expected”

64,533 views

7 years ago

CppCon
De-fragmenting C++: Making Exceptions and RTTI More Affordable and Usable - Herb Sutter  CppCon 2019

In the C++ language itself, there are only two features that violate the zero-overhead principle, exception handling and RTTI – and ...

1:33:12
De-fragmenting C++: Making Exceptions and RTTI More Affordable and Usable - Herb Sutter CppCon 2019

89,059 views

6 years ago

Code Radiance
C# Exception Handling Best Practices You Need to Know

Learn about some of the programming best practices when handling exceptions in the C# methods using the try-catch-finally ...

7:08
C# Exception Handling Best Practices You Need to Know

11,481 views

5 years ago

.NET Interview Preparation videos
Exception Handling in C# step by step using example

For more such videos visit http://www.questpond.com For more such videos subscribe ...

24:54
Exception Handling in C# step by step using example

40,249 views

9 years ago

Professor Hank Stalica
C++ Tutorial: Exceptions and Exception Handling example

In this video, I discuss exception handling in C++. The viewer is introduced to terminology and flow control. Examples are ...

34:01
C++ Tutorial: Exceptions and Exception Handling example

3,567 views

11 years ago

ClojureTV
Clojure for Java Programmers Part 1 - Rich Hickey

Part 1 of a presentation by Rich Hickey to the NYC Java Study Group. A gentle introduction to Clojure, part 1 focuses on reader ...

1:48:13
Clojure for Java Programmers Part 1 - Rich Hickey

129,196 views

13 years ago

CppCon
C++20: An (Almost) Complete Overview - Marc Gregoire - CppCon 2020

https://cppcon.org/ https://github.com/CppCon/CppCon2020 --- The technical work on C++20 was finished in January 2020, and is ...

58:52
C++20: An (Almost) Complete Overview - Marc Gregoire - CppCon 2020

142,562 views

5 years ago

IAmTimCorey
Mocking in C# Unit Tests - How To Test Data Access Code and More

Unit tests are great, but how do you test your data access? You sure don't want to actually delete records when you are testing the ...

1:02:34
Mocking in C# Unit Tests - How To Test Data Access Code and More

307,076 views

7 years ago

Lex Clips
Exception vs Errors | Chris Lattner and Lex Fridman

Lex Fridman Podcast full episode: https://www.youtube.com/watch?v=pdJQ8iVTwj8 Please support this podcast by checking out ...

8:02
Exception vs Errors | Chris Lattner and Lex Fridman

57,547 views

2 years ago

CodeBeauty
Exception handling in C++ (How to handle errors in your program?)

Learn how to solve problems and build projects with these Free E-Books ⬇️ C++ Lambdas e-book - free download here: ...

24:46
Exception handling in C++ (How to handle errors in your program?)

122,099 views

4 years ago

GOTO Conferences
The Do's and Don'ts of Error Handling • Joe Armstrong • GOTO 2018

This talk outlines the do's and don'ts of error handling. Things you should do if you want to write fault tolerant code, and things you ...

45:31
The Do's and Don'ts of Error Handling • Joe Armstrong • GOTO 2018

72,857 views

7 years ago

CppCon
Exceptionally Bad: The Misuse of Exceptions in C++ & How to Do Better - Peter Muldoon - CppCon 2023

https://cppcon.org/ --- Exceptionally Bad: The Misuse of Exceptions in C++ & How to Do Better - Peter Muldoon - CppCon 2023 ...

1:03:24
Exceptionally Bad: The Misuse of Exceptions in C++ & How to Do Better - Peter Muldoon - CppCon 2023

40,790 views

2 years ago

IAmTimCorey
Handling Exceptions in C# - When to catch them, where to catch them, and how to catch them

This video covers the best practices of exception handling as well as how to rethrow exceptions, create new exceptions, and ...

59:46
Handling Exceptions in C# - When to catch them, where to catch them, and how to catch them

179,881 views

7 years ago

Charles Cabergs
Advanced C 20: Error Handling

How to do error handling in C and get specific error in a human readable form. Social links: Website: https://cacharle.xyz Github: ...

7:57
Advanced C 20: Error Handling

6,704 views

2 years ago

CppCon
Modern C++ Error Handling - Phil Nash - CppCon 2024

https://cppcon.org​ --- Modern C++ Error Handling - Phil Nash - CppCon 2024 --- We've had exceptions in C++ since before the ...

1:01:03
Modern C++ Error Handling - Phil Nash - CppCon 2024

24,206 views

10 months ago

arisaif
Exception Handling in C++ Multithreading

Learn how to safely handle exceptions in multithreaded C++ programs — and why forgetting this can crash your entire application ...

15:42
Exception Handling in C++ Multithreading

1,237 views

7 months ago

Brad Vander Zanden
C Exception Handling

Okay so we all good with that why so basically there there's ways to do exception handling in C but they all have drawbacks.

1:09:12
C Exception Handling

1,387 views

11 years ago

Simple Snippets
Exception Handling in C++ Programming

Support Simple Snippets by Donations - Google Pay UPI ID - tanmaysakpal11@okicici PayPal - paypal.me/tanmaysakpal11 ...

10:12
Exception Handling in C++ Programming

258,451 views

8 years ago

NeuralNine
Exception Handling - C++ Tutorial For Beginners #18

Today we talk about exception handling in C++. ◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾◾ Programming Books & Merch The ...

7:28
Exception Handling - C++ Tutorial For Beginners #18

28,607 views

5 years ago