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 13154There 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 7609where 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 10858Hi 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.
2248
In C++ what is a vtable and how does it work?
Which one is better- macro or function?
what are the decision making statements in C++? Explain if statement with an example?
What is the full form of stl in c++?
Write a program in C++ for Fibonacci series
Explain the advantages of inheritance.
Does c++ have a hash table?
What are the extraction and insertion operators in c++?
What is a down cast?
Is c++ faster than c?
What is object in oop with example?
Difference between declaration and definition of a variable.
What are the components of stl?
What are iterators in c++?
c++ program to swap the objects of two different classes