i have given a project to create examination seating plan
system in c++. so can anyone send me the answer of this
question quickly??????
Answer / parul
Did you get any help regarding that project. If so, then please share it with me too.
kohliparul@yahoo.com
| Is This Answer Correct ? | 2 Yes | 4 No |
What do you mean by vtable and vptr in c++?
Differentiate between an array and a list?
Why are pointers used?
const char * char * const What is the differnce between the above two?
What are function prototypes?
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\"; } };
Difference between pointer to constant vs. Pointer constant
What are different types of typecasting supported by C++
What is a storage class in C++
find the two largest values among the 6 numbers using control structures : do-while,for,if else,nestedif- else ,while. one or two of them.
What is problem with overriding functions?
Why cstdlib is used in c++?