What is c++ course?
No Answer is Posted For this Question
Be the First to Post Answer
What is called array?
int age=35; if(age>80) {Console.WriteLine("Boy you are old");} else {Console.WrieLine("That is a good age");}
What will happen if I allocate memory using "new" and free it using "free" or allocate sing "calloc" and free it using "delete"?
If a header file is included twice by mistake in the program, will it give any error?
What do you mean by “this” pointer?
What is abstraction in c++?
Types of storage and scope of each type
What is the difference between c++ and turbo c++?
Write a function which takes a character array as input and reverses it in place.
2 Answers Lehman Brothers, Vision Infotech,
Is c++ used anymore?
What is the output of: String a1 = "Hello"; String a2 = "world!"; String* s1 = &a2; String& s2 = a1; s1 = &a1; s2 = a2; std::cout << *s1 << " " << s2 << std::endl;
What is difference between shallow copy and deep copy? Which is default?