Is ca high or low level language?
No Answer is Posted For this Question
Be the First to Post Answer
If you don’t declare a return value, what type of return value is assumed?
Who calls main function?
What are inline functions?
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
Explain dangling pointer.
How can you quickly find the number of elements stored in a static array?
Why is c++ still used?
What do you mean by translation unit in c++?
You have two pairs: new() and delete() and another pair : alloc() and free(). Explain differences between eg. New() and malloc()
What is the Difference between "vector" and "array"?
15 Answers Covansys, Gambit, TCS, Wipro,
Explain rethrowing exceptions with an example?
What is c++ 11 and c++ 14?