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 are destructors?
int main() { int i ,a[i]; i = 0; a[i] = 10; cout<< a[i] << endl; return 0; } What will be output of this program?
How much maximum can you allocate in a single call to malloc()?
Is c++ a low level language?
Why is "using namespace std;" considered bad practice?
What is ostream in c++?
How do I get good at c++ programming?
What is searching? Explain linear and binary search.
Is map ordered c++?
What is the header file for setw?
What is overloading unary operator?
How is data hiding achieved in c++?