can u tell me how to compile the code in the terminal just like sir is doing?
Compiler doubt ---
Hi @sktg99
First step in terminal is to set your working directory using cd command. For example if you want to run a file that is in document folder then first you have to execute cd document/ . This will make document as your working directory. Then you have to compile your file using the following command :
clang++ -Wall check.cpp
Here check.cpp is the filename which you want to compile.