Write a program using GUI concept for the scheduling
algorithms in Operating system like SJF,FCFS etc..
What are different types of loops in c++?
What is scope operator in c++?
What is the full form of stl in c++?
is throwing exception from a constructor not a good practice ?
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 functions syntax in c++?
What is an operator in c++?
Ask to write virtual base class code?
What does std :: flush do?
How can you force instantiation of a template?
How many storage classes are available in C++?
Who invented turbo c++?