How do you print data from an arry index by stating the position as the output in the C program?
What is the relationship Between Classes and Objects?
Latest Answer: Class:1. Is a logical construct which defines the shape and nature of an object.2. Is a Template for an object.Object:1. Is a real time entity.2. Is a instance of class. ...
What do you mean by priority level in features of OOPS?
Latest Answer: In thread we can set 5 types of priority1. Normal2. Max3. Min4. Above normal5. Below normal ...
in a given number how many 1 bits and 0 bits are there,,,,,,,,,,can anyone solve this problem by using bit wise operator
Latest Answer: for(int count = 0; ;n = n>>1){ count += (n&1);} ...
In operator overloading Which can be overloaded but cannot be inherated?
Latest Answer: i thnk it is an '=' operator...any way check this once with your programming skills. ...
Latest Answer: It can be better explained in this way also.Thumb Rule When a copy constructor is called ? : when any object is created and it is being initialized with otherObject of same type Copy constructor is called. Blv me this is is only one way how copy ...
Why are private fields assigned with public properties?Is this not same as declaring the field Public?
Latest Answer: Encapsulation means data hiding+abstraction. In data hiding we will not allow our data to go out directly. Eg. Declaring data members as private is data hiding, where as abstraction means hiding internal implementation is called abstraction. ...
(without using the built in functions of C++)
I need a simple example progam for this with clear definition
Latest Answer: How will this memset() function willl handle the worst case (ie) when the string is lesser than the given length If my string is char string[]="i love my india";If I use the function memset(string, '*' , 20);Will it handle ...
View page [1] 2 3 4 5 6 7 8 9 10 Next >>

Go Top