design class for linked list and include
constructor,destructor,insert option.
node of form
struct node
{
int data;
struct node &ptr;
}


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More OOPS Interview Questions

Can we have inheritance without polymorphism?

0 Answers  


Write a program to accept a number and to print numbers in pyramid format? for eg:for a no. 5 1 212 32123 4321234 543212345

7 Answers  


What is overloading and its types?

0 Answers  


difference between overloading and overridding

11 Answers  


A file pointer always contains the __________ of the file

5 Answers  






write a c++ code of diagonal matrix.

2 Answers  


what is Class in oops with example?

4 Answers   HCL,


create a c++ program that will accepts 9 inputs using 3 by 3 array.

1 Answers  


What are the three main types of variables?

0 Answers  


Write a program to compute for numeric grades for a course. The course records are in a file that will serve as the input file. The input file is in exactly the following format: Each line contains a student's first name, then one space, then ten quiz scores all on one line. The quiz scores are in whole number and are separated by one space. Your program will take it input from this file and sends it output to a second file. The data in the output file will be exactly the same as the data in the input file except that there will be one additional number (of type double) at the end of each line. This number will be the average of the student's ten quiz scores. Use at least one function that has file streams as all or some of its arguments.

0 Answers  


ambiguity regulation of multiple inheritance with example.

1 Answers  


how to swap the variables without using temp and operators

1 Answers  


Categories