absolutely fantastic in content and presentation! Many thanks!
@arpitpatel58143 жыл бұрын
Excellent , Great , No words to appreciate enough. Thank You.
@4Y0P9 жыл бұрын
Love the effort you put in with the slideshow and everything, great video!
@NevenaPerovic10 жыл бұрын
What a great tutorial!! :) :) Thanks a lot! I wish I had such detailed classes once when I started learning c++! Cheers!
@DownloadableFox3 жыл бұрын
Yooo. This video is like super old however I really want to thank you for it. I was really having problems understanding how headers worked and I had a lot of problems inside my code because of the lack of guards. Seriously thanks!
@kerimbendov50173 жыл бұрын
21:17 how do c++ know that when u wtite Rectangle(sideLen, sideLen) u actually mean the width and height? İ mean, u havent declared anything called "sideLen" in rectangle, so it may be anything, why width and heigth. İ would really appreciate if u helped me with this question, cuz i'm a lil bit confused right now 😅
@jessicajumelles89444 жыл бұрын
Awesome to know about #pragma once. always wondered why it showed up when I created a new file lol. Also, I added the #ifndef and #define in all my .h files. still having issues. I'm using a function template so the error I'm getting is function template has already been defined. :(
@nicholasfazzolari36479 жыл бұрын
So extremely useful. Thanks for creating this video.
@orionemoray39904 жыл бұрын
thank you for this, learned a lot.
@cigoli35424 жыл бұрын
How to Compiler multiple files in vscode?
@mandarparkhi37084 жыл бұрын
very useful. Thanks.
@zeinabrahmani9634 жыл бұрын
Thank you. Could you please make a similar tutorial for VSCode as well?
@luiswittrock2233 жыл бұрын
There is literally nothing that would change using VSCode or any other text editor. You still just have to create new files .h or .cpp and write your code into it and than compile.
@zeinabrahmani9633 жыл бұрын
@@luiswittrock223 Thanx for your reply. Yes, the creation of the .h and .cpp files are exactly the same. What I found difficult in VS Code is the configuration of the .json files, i.e. how can I make the VS Code find these .h and .cpp files when the files are put in different folders. For example, I have a repository that puts the .cpp files in several folders and it's hard to set the path for all these .cpp files one by one.
@luiswittrock2233 жыл бұрын
@@zeinabrahmani963 I think in that case it's easier to just use a makefile.
@zeinabrahmani9633 жыл бұрын
@@luiswittrock223 Yes, that's what I am doing now. But I really wish to be able to debug the codes in VS code. Thanx.
@forresterickson62253 жыл бұрын
Might want to explain what "#pragma once" is about for us beginners. ... resuming watching.
@forresterickson62253 жыл бұрын
This helped: en.wikipedia.org/wiki/Pragma_once
@AiswaryaRamesh-r5t Жыл бұрын
Can you please provide this code
@herootaku56828 жыл бұрын
hey, why rectangle.h/circle.h are included in main.cpp but not rectangle.cpp/circle.cpp
@lucianoribeiro90967 жыл бұрын
because is this the correct way. In general, you as a client don't have acess of the implementation of the .cpp of a class, only the things that it does, that are listed in .hpp. In other words, you need to know what it does and not how it does.
@DiegoJaraPalomino10 жыл бұрын
Very useful, thanks. There is no tutorial in spanish.
@shibasispatel66247 жыл бұрын
Thanks for making this awesome video. It could have been better if you would have included namespaces.
@shybeeee4 жыл бұрын
tks alott
@arpitpatel58143 жыл бұрын
In case may be helpful to those who are new: for VSCode in terminal window (paste and press enter) cd "f:\prac5\" ; if ($?) { g++ main.cpp Shape.h Circle.cpp Rectangle.cpp Square.cpp -o main} ; if ($?) { .\main } Note : f:\prac5\ - Replace with your folder address
@UvUtkarsh3 жыл бұрын
but I don't know that why in my case it is not happening.