What type of question are asked in GE code writing test based
on c++ data structures and pointers?
No Answer is Posted For this Question
Be the First to Post Answer
. If employee B is the boss of A and C is the boss of B and D is the boss of C and E is the boss of D. Then write a program using the Database such that if an employee name is Asked to Display it also display his bosses with his name. For eg. If C is displayed it should also display D and E with C?
1. What does the following do: void afunction(int *x) { x=new int; *x=12; } int main() { int v=10; afunction(&v); cout<<v; } a) Outputs 12 b) Outputs 10 c) Outputs the address of v
What is the best c c++ compiler for windows?
How do I run a program in notepad ++?
how to swap two strings without using any third variable ?
what is difference between static and non-static variables
Explain how functions are classified in C++ ?
Briefly describe a B+ tree. What is bulk loading in it?
What are built-in functions? What is the syntax for the definition?
In a function declaration, what does extern mean?
What is implicit conversion/coercion in c++?
how to create window program in c++.please explain.