Identify the error in the following program.
include<iostream>
using namespace std;
void main()
{
int num[]={1,2,3,4,5,6};
num[1]==[1]num ? cout<<"Success" : cout<<"Error";
}
What is the purpose of a constructor? Destructor?
What are "pure virtual" functions?
0 Answers Adobe, Alter, iNautix,
How to stop class inheritance in C++ with condition that object creation should be allowed
How to generate random numbers in C++ with a range?
Tell How To Check Whether A Linked List Is Circular ?
How will you print a list of all unique words from a string which may contain repeated words?
dynamic scoping is
Explain what happens when an exception is thrown in C++.
What is partial specialization or template specialization?
CDPATH shell variable is in(c-shell)
How many times will this loop execute? Explain your answer.
What are the advantages and disadvantages of B-star trees over Binary trees?