Which is used to use a function from one source file to another?
What is the use of no linkage?
To use external linkage we have to use which keyword?
What is the defualt type oof linkage that are available for identifires?
What will be the output of these two programs?
1.
1. 1. #ifndef Exercise_H 2. #define Exercise_H 3. int num = 842; 4. #endif
2.
1. #include2. #include "exe.h" 3. using namespace std; 4. int main(int argc, char * argv[] ) 5. { 6. cout << number++; 7. return 0; 8. }