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,617,257 results
C return statement tutorial example explained #C #return #statement double square(double x) { double result = x * x; return result; } ...
116,746 views
4 years ago
coding #programming #cprogramming int main() { // return = returns a value back to where you call a function int max = getMax(4, ...
20,061 views
1 year ago
How to return an array from a function in C. We technically cannot return an array from a function in C, but we can use pointers, ...
92,113 views
3 years ago
Programming is amazing. Computers allow us to do things that otherwise would be impossible. But sometimes, the code that we ...
493,944 views
Source Code - http://www.giraffeacademy.com/programming-languages/c/ This video is one in a series of videos where we'll be ...
34,975 views
8 years ago
Example of how to "return" more than one value from a function in C, using pass-by-reference (i.e. pass-by-pointer). Source code: ...
9,809 views
C# return keyword tutorial example explained #C# #return #keywords using System; namespace MyFirstProgram { class Program ...
65,469 views
5 years ago
How to use a return statement in a void function in C. Source code: ...
18,638 views
C++ return keyword tutorial example explained #return #keyword #C++.
46,655 views
2 years ago
How to return a string from a function using C. Methods covered include returning a pointer to a string literal, using pass by ...
22,508 views
An overview of main function return values in C. Source code: ...
13,777 views
C Programming: Returning Pointers in C Programming. Topic discussed: 1) Finding the mid of an array using the returning ...
294,586 views
7 years ago
C functions tutorial example explained #C #functions #tutorial void birthday() { printf("\nHappy birthday to you!"); printf("\nHappy ...
115,215 views
The difference between C and other languages is quite obscure even if the syntax is the same.
33,592 views
This EZEd video explains Functions - Introduction to Functions - Need to define a user defined function - Categories of function ...
61,541 views
Python return statement tutorial explained #python #return #statement #return statement = Functions send Python values/objects ...
125,530 views
How to use function pointers (i.e. pointers to functions) in C, including a demonstration of some use cases such as callback ...
105,293 views
An overview of how to use the exit() function in C. Source code: ...
47,070 views
See complete series on pointers here: http://www.youtube.com/playlist?list=PL2_aWCzGMAwLZp6LMUKI3cc7pgGsasm2_ In this ...
290,198 views
13 years ago
At least once, we've all tried returning an array type from a function and it failed horribly. Here's how to do it properly. Feel free to ...
70,913 views