What is a scope ?
A scope is where an identifier is declared , it can be thought of , as containing a list of identifiers . There are multiple scopes in C++
, hence multiple places , where … Read More
A scope is where an identifier is declared , it can be thought of , as containing a list of identifiers . There are multiple scopes in C++
, hence multiple places , where … Read More
Compiling a C
source file , into an executable program , involves multiple steps . They are as follow :
The first step in compiling a C
source file , is the preparation of the … Read More