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
What is difference between function overloading and overriding?
how to swap the variables without using temp and operators
How to handle exception in c++, For example in a functions i am assigning memory to some variables and also in next instructions in am dividing one variable also. If this functions generates a error while allocating memory to those variable and also while dividing the variable if i divide by zero then catch block how it will identify that this error has cone from perticular instruction
Give an example where we have to specifically use C programming language and C++ programming language cannot be used?
Write a program to get the binary tree.
When you define a integer it gets stored in which data structure?(Stack or a heap)
What is oops and why we use oops?
1. Wrie a function which returns the most frequent number in a list of integers. Handle the case of more than one number which meets this criterion. public static int[] GetFrequency(int[] list)
What is the point of oop?
Is following functions are said to be overloaded? int add(int a,int b) char *add(int a,int b)
inheritence with example
When will a constructor executed?