STL (140)
OOPS (873)
C++ General (2409) What is a pure virtual function? Why is it represented as = 0...how is the internal implementation for the same
CTS,
3 8341How many types of casting are there in C++? When is a dynamic cast,static_cast,reinterpret cast used?
CTS,
2 9326Write a program to swap 2 chars without using a third varable? char *s = "A"; char *p = "B";
CTS,
7 24829Am studying basic c++ programming, have been given the following assignment. Design a linear program to calculate the maximum stress a material can withstand given a force and a diameter of a circle. To find the required area pi should be defined. Have most of the program sorted out but am at a loss as to how to show the calculations required. Can anyone help?
2194reading material is provided 3 books for c++ if u need more do let me know thnx i hve lots of material do let me know if u want it
2 4753
Can the operator == be overloaded for comparing two arrays consisting of characters by using string comparison?
Write a program which is required to process the time of a clock in hours and minutes, entered from the keyboard. With this program, there are two requirements for any data entered by a user: 1. The data must be of the correct type (in this case, two ints). 2. The data must be in the correct range: this means that, for the minutes, negative numbers and any number above 59 must be rejected; for the hours, negative numbers and any number above 23 must be rejected. Output error message for invalid data input. Output the time one and a half hour after the time input. i.e. Hour: 22 Min: 32 One and a half hour after 22:32 is 00:02
What is this weird colon-member (" : ") syntax in the constructor?
What does <> mean pseudocode?
What are pass by value and pass by reference?what is the disadvantage of pass by value?
Can a constructor be private?
what's the basic's in dot net
What is low level language in simple words?
What is c++ hash?
What is c++ namespace?
What is code reusability in c++?
How static variables and local variablesare similar and dissimilar?
What is meant by a delegate?
What is size of string in c++?
. 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?