C++ - Void

preview_player
Показать описание
Let's take a look at void in C++!

Welcome to my C++ learning series! This is a series on various C++ concepts that aims to both shed light on these concepts, test your knowledge, and teach you something along the way. The series will go from easy to hard questions. C++17.

If you would like to see more, please like the video and subscribe.

Рекомендации по теме
Комментарии
Автор

bruh finally a simple explanation of void thank you

hnrydn
Автор

Thank you so much I had so much trouble understanding void you finally made it make sense and why and when you would use void I kept thinking why would you type any code in if you didn't want it to return anything but now it make sense thank you thank you thank you

breakingbenjaminrox
Автор

lmao my response after watching this video was Thank you Jesus 😂

Webdevelopmentya
Автор

Very thanks to you bro ...literally where ever I search about void or ask anyone they got one answer they don't return anything and by seeing programs where people are getting output cout or any calculation and all its just sucks

Aadityak
Автор

It's possible to compile your code when you write it that will be better

komlansamuelzanou
Автор

What complier are you using? I usually use the online GDB

odell
Автор

An example using void in C++:

#include <iostream>

using namespace std;

void Jesus(int Biblie)
{
for (int Read = 0; Read <= Biblie; Read++)
{
cout << "You must..." << endl;
}
}

int main()
{
Jesus(10);
return 0;

}


I still don't undestand the void...

pacocarrion
Автор

From now on, every time that want to tell someone that looks stupid, i'll simply say : "you're deprecated"

rawlc.
Автор

coding jesus
😂😂
que mmada?? es el mejor nombre de la vida

danto
Автор

Jesus would never use the f word. Your version of Jesus is naughty. :D

RealityCheck