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 a mutable member?
What is the full form nasa?
Can you be able to identify between straight- through and cross- over cable wiring? And in what case do you use straight- through and cross-over?
What is auto type c++?
What is private public protected in c++?
Incase of a function declaration, what is extern means?
given unsigned int ui1=3,ui2=7; what are the outputs of a)ui1 & ui2 b)ui1 && ui2 c)ui1 | ui2 d)ui1 || ui2 i also need the justification for the answers thank you
what are the iterator and generic algorithms.
How do you link a C++ program to C functions?
give me an example for testing a program showing the test path .show how the test is important and complex.
What is the difference between equal to (==) and assignment operator (=)?
Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == ) y-= 7; else y = 8; if the value of x is 4 before the nested IFs are executed, what is the value of y after the nested IFs are executed?