what does exactly the linker do?
Answer / s.verma
The work of the linker is to take all the related files of a
project, after compilation of individual files, wrap them
into a single file and hand it over to the loader. The loader
then loads it into the main memory and prepares it for
execution
| Is This Answer Correct ? | 3 Yes | 0 No |
What is operator overloading? Give Example
11 Answers CTS, IBM, TCS,
what is an instance of a class
#include <iostream> using namespace std; struct wow { int x; }; int main() { wow a; a.x = 22; int c = a.x; int *b = new int; cout << c; return 0; } option: No output 0 22 -(11) Will not compile
Can private class be inherited?
how to create thread in java?
17 Answers IBM, Infosys, Wipro,
Why a "operator=(...)" when there is a copy ctor?
What is static in oop?
What is namespace?
Templates mean
Question: Write a program that prints a paycheck. Ask the program user for the name of the employee, the hourly rate, and the number of hours worked. If the number of hours exceeds 40, the employee is paid “time and a half”, that is, 150 percent of the hourly rate on the hours exceeding 40. Be sure to use stepwi se refine ment and break your solution into several functions. Use the int_name function to print the dollar amount of the check.
design class for linked list and include constructor,destructor,insert option. node of form struct node { int data; struct node &ptr; }
What are the 3 pillars of oop?