What's the hardest coding language?
No Answer is Posted For this Question
Be the First to Post Answer
True or false, if you keep incrementing a variable, it will become negative a) True b) False c) It depends
Explain the static storage classes in c++.
Is c++ a low level language?
What is c++ library?
Write a program to get the value of sin (x) using a library function , when x is given in degrees.
Which recursive sorting technique always makes recursive calls to sort subarrays that are about half size of the original array?
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
What is the use of dot in c++?
If a base class declares a function to be virtual, and a derived class does not use the term virtual when overriding that class, is it still virtual when inherited by a third-generation class?
Which software is best for programming?
Why do we use classes in programming?
What is binary search in c++?