Can you Mention some Application of C/C++?
No Answer is Posted For this Question
Be the First to Post Answer
Explain the concept of friend function in c++?
How to change constant values?
How long does it take to get good at leetcode?
which of the following is not an secondary constant a) array b) real c) union
Shall we use 'free' to free memory assigned by new, What are the further consequences??
Describe the process of creation and destruction of a derived class object?
What is the use of object in c++?
What is RAII (Resource Acquisition Is Initialization)?
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
Write a struct time where integer m, h, s are its members?
What is Pure Virtual Function? Why and when it is used ?
Write a corrected statement in c++ so that the statement will work properly. if (x > 5); y = 2*x; else y += 3+x;