What are the two types of comments?
No Answer is Posted For this Question
Be the First to Post Answer
Write a code/algo to find the frequency of each element in an array?
What is unary operator? List out the different operators involved in the unary operator.
Write a program to calculate the following i want a c++program for this condition 1+4+9+16+….+100 Like this (1^2+2^2) Hint use function pow(a,b)
What is a unnitialised pointer?
Explain stack & heap objects?
What is the output of this prog. ? struct A { A(){ cout << \"A\"; } }; struct B { B(){ cout << \"B\"; } }; struct C { C(){ cout << \"C\"; } }; struct D { D(){ cout << \"D\"; } }; struct E : D { E(){ cout << \"E\"; } }; struct F : A, B { C c; D d; E e; F() : B(), A(),d(),c(),e() { cout << \"F\"; } };
What is class and structure in c++?
Which c++ operator cannot overload?
what are the types of Member Functions?
A mXn matrix is given and rows and column are sorted as shown below.Write a function that search a desired entered no in the matrix .with minimum complexity 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
Describe Trees using C++ with an example.
What are the 3 levels of programming languages?