STL (140)
OOPS (873)
C++ General (2409) 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.
1 13070There are 2 classes defined as below public class A { class B b; } public class B { class A a; } compiler gives error. How to fix it?
3 7465where is memory for struct allocated? where is memory for class-object allocated? I replied for struct in stack and for class-object in heap. THen he asked if class has struct member variable what happens.class on heap and what about struct in that class? couldnt ans :( :-?
2 10716Hi friends I have experience of 6 months in website design and maintanence. Now i am looking for other IT jobs.. to switch platform. please post any interview you know in chennai.
2190
What are the uses of c++ in the real world?
What are the benefits of operator overloading?
What is a responder chain?
How to reverse a string in C++
Can there be at least some solution to determine the number of arguments passed to a variable argument list function?
How do I get good at c++ programming?
What is constructor in C++?
How do you explain polymorphism?
What is virtual table?
What does sksksk mean in text slang?
Tell me an example where stacks are useful?
What are move semantics?
Write a program to implement OOPS concepts such as inheritance, polymorphism, friend function, operator overloading?
Show the declaration for a pointer to function returning long and taking an integer parameter.
What is the precedence when there is a global variable and a local variable in the program with the same name?