I study and it was faster to see this tutorial as to read the documents from the university, thank you so much
@wick62962 жыл бұрын
Glad to see you back!
@parrotparrot19482 жыл бұрын
You earned yourself a subscriber :)
@ramakrishna40922 жыл бұрын
@ Codevault Your videos are helped me alot to get concept more understandable can you pls explain what is difference in C structure and C++ structure
@CodeVault2 жыл бұрын
I'll look into it
@НастяТишина-ш8ы2 жыл бұрын
Thank u!!!!!
@moatazahmed2771 Жыл бұрын
Thank you👌, how can I make the run button run the whole program or files in my project instead of typing each of them in VS code? It works in Code Blocks IDE but I can't do it in VS code!
@CodeVault10 ай бұрын
There is a video on this topic that you can find here: code-vault.net/lesson/ublnbln8uf:1603733528013
@inferrno522 жыл бұрын
very good
@soufianeamimi2 жыл бұрын
Amazing
@aicoding20107 ай бұрын
it means that we need to write .h file fot each .c file?
@CodeVault7 ай бұрын
Usually, yes
@willliamdev27 күн бұрын
vou testar, one second.
@kannaiyand27072 жыл бұрын
why do we need global.c for implementation ? cant we write in global.h itself ?
@CodeVault2 жыл бұрын
No. If you do that and include global.h in multiple C files of the same compilation you'll receive an error due to the definition of the function being found twice in that same compile. So, you have to somehow prevent that. This is one way of doing it
@k_ushagra2 жыл бұрын
can you explain when we write a function definition in a .h file, even after using header guards why do we use the "inline" keyword?