What is compilation?
Answer / shiva479
compilation is a process of converting program from user understandable language to machine understandable language and vice versa.
Is This Answer Correct ? | 32 Yes | 1 No |
What is the difference between a copy constructor and an overloaded assignment operator?
4 Answers Belzabar, Citrix, Microsoft, Wipro,
What's the order in which the local objects are destructed?
What is an opaque pointer?
Can we make copy constructor private in c++?
How to reduce a final size of executable?
In a function declaration what does extern means?
List out some of the object-oriented methodologies?
What is a stack c++?
What is the output of: String a1 = "Hello"; String a2 = "world!"; String* s1 = &a2; String& s2 = a1; s1 = &a1; s2 = a2; std::cout << *s1 << " " << s2 << std::endl;
Why is the function main() special?
Difference between pass by value and pass by reference?
What is setiosflags c++?