a class that maintains a pointer to an object that is
programatically accessible through the public interface is
known as?
Answers were Sorted based on User's Feedback
Answer / venkataramakrishna. danduri
It is nothing but a Smart pointer.
| Is This Answer Correct ? | 1 Yes | 0 No |
what is an array
Difference between overloading vs. Overriding
Which format specifier is used for printing a pointer value?
What is the difference between #import and #include in c++?
What is the difference between a declaration and a definition?
What are structs in c++?
What is flush c++?
Write a C program to calculate the salary of each employee in your company. You need to input the hours worked and the hourly rate. The company pays 1.5 times the hourly rate for all hours worked in excess of 48 hours. Use the formulas below to calculate the salary: if employee worked less than 48 hours salary = hours * rate; if employee worked more than 48 hours salary = 48.0 * rate + ( hours − 48.0 ) * rate * 1.5; You are required to use a loop to produce the sample output as given below.
Is c++ a low level language?
Const char *p , char const *p What is the difference between the above two?
Write a function which takes a character array as input and reverses it in place.
2 Answers Lehman Brothers, Vision Infotech,
Will the inline function be compiled as the inline function always? Justify.