What is the use of class in c++?
No Answer is Posted For this Question
Be the First to Post Answer
Draw a flow chart and write a program for the difference between the sum of elements with odd and even numbers. Two dimensional array.
What are pointers, when declared, intialized to a) NULL b) Newly allocated memory c) Nothing. Its random
List different attributes in C++?
How many keywords are used in c++?
In int main(int argc, char *argv[]) what is argv[0] a) The first argument passed into the program b) The program name c) You can't define main like that
What is a constant reference?
Are vectors passed by reference c++?
Explain the static storage classes in 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.
Explain 'this' pointer and what would happen if a pointer is deleted twice?
what is importance of data sturture in a programming language?
22 Answers L&T, TCS, Wipro,
What is the difference between inline functions and macros?