// -------------------------- Example 1 -------------------------- #include #include #include using namespace std; int main() { string cars[] = {"Corvette","Tesla","Ferrari","Audi" }; for (int i = 0; i < size(cars);i++) { cout
@DT-mj6ou2 ай бұрын
Bro, your videos are literally helping me with my c++ class. No programming jargon to confuse me. love it!
@eslamesam76163 жыл бұрын
Thank you bro. Yor are a hero.
@christopherjones87853 жыл бұрын
Hey bro. Love these tutorials! 2 Questions about part 2 if you have the time. 1) Would this work if you used a regular Array instead of a pointer to the address of an Array? Why or why not? 2) Why don’t you have to dereference the pCars[i]? Without that, why isn’t it just printing the address of that portion of the Array?
@muhammadazzam98947 ай бұрын
Great vid 👍👍
@REYDAGII5 ай бұрын
Best❤
@shivendra.__2 жыл бұрын
You r done KZbin algo
@YusufMohamed-q9q Жыл бұрын
good video
@skl77143 жыл бұрын
Thanks bro ...plz continue making video on c++..these are very helpful
@夜神月-l8q2 жыл бұрын
Bro u r my hero ☺️
@baovogia67823 жыл бұрын
like it
@ibunnyyoutube54236 ай бұрын
nice
@AnkomaDjed9 ай бұрын
Bless
@SAEID-n4r Жыл бұрын
❤❤❤❤
@worldin-one-minute10 ай бұрын
thank you brooo!!!!!!🤩
@ghettoslick20002 жыл бұрын
Thanks again Bro
@YONKO4 Жыл бұрын
cool
@rezakheirabadi93588 ай бұрын
Thank you
@sSs-di8nv Жыл бұрын
❤
@whereisdamn228 ай бұрын
Hey bro, I’m finding it hard to understand the sorting of arrays
@ibrahimarshad7982 Жыл бұрын
Sir size()exact size return krta hai to wo q nhi use kia
@levicaaya52132 жыл бұрын
Hello in line 13, why didn't you just declare an array without any pointer? I'm just curious thank you
@neeraj42103 жыл бұрын
Thanks ☺️
@HailemariamYimer Жыл бұрын
hallal
@abrehamengida39726 күн бұрын
ሀበሻ🎉🎉🎉🎉
@ЭльдарШогенов-э8ч2 жыл бұрын
string is not unambiguous. Can help?
@birbylikesfox10322 жыл бұрын
import iostream and use std::string
@michalski91412 жыл бұрын
I can't find the size() function
@kamisama57832 жыл бұрын
Try this function size_t()
@birbylikesfox10322 жыл бұрын
make sure to use it in some function, not in empty space
@birbylikesfox10322 жыл бұрын
@@kamisama5783 is that a mac thing?
@michalski91412 жыл бұрын
@@birbylikesfox1032 size_t is not a function, its a data type defined in standard c as unsigned int, its what sizeof returns
@michalski91412 жыл бұрын
the size function is contained within the set namespace of the standard namespace, code bro included using namespace std at the top of the file which is generally bad practice, what you should write it as is std::set::size()