How the compilers arranges the various sections in the
executable image?
Answer / kiran
Using RGB information stored in the memory of that
particular pixel
| Is This Answer Correct ? | 0 Yes | 1 No |
Why c++ is created?
What is the difference between new() and malloc()?
Which software is best for c++ programming?
Can a built-in function be recursive?
What is name mangling?
Write a C++ Program to check whether a number is prime number or not?
class basex { int x; public: void setx(int y) {x=y;} }; class derived : basex {}; What is the access level for the member function "setx" in the class "derived" above? a) private b) local c) global d) public e) protected
Explain some examples of operator overloading?
1. What does the following do: void afunction(int *x) { x=new int; *x=12; } int main() { int v=10; afunction(&v); cout<<v; } a) Outputs 12 b) Outputs 10 c) Outputs the address of v
How many static variables are created if you put one static member into a template class definition?
What is the best way to declare and define global variables?
What do you mean by vtable and vptr in c++?