total amount of milk produced each morning and then calculates
and outputs the number of cartons needed for this milk , the
cost of producing the milk and the profit from producing this
milk.
Can we remove an element in a single linked list without traversing? Lets suppose the link list is like this 1 2 3 4 5 6 We need to remove 4 from this list (without traversing from beginning) and the final link list shud be 1 2 3 5 6 only thing we know is the pointer to element "4". How can we remove "4" and link "3" to "5"?
Please post the model question paper of hal?
what kind of projects are suitable for c and c++
What is a template in c++?
C is to C++ as 1 is to a) What the heck b) 2 c) 10
why is c++ called oops? Explain
Tell me what are static member functions?
class base { public: int fun(int) {} }; class base2 { public: int fun(float) { } }; so here qustion is both function either function overloading or over riding;
Are strings mutable in c++?
What is the maximum value of a unsigned char a) 255 b) 256 c) 128
How can I disable the "echo" feature?
Define token in c++.