What is the this pointer?
No Answer is Posted For this Question
Be the First to Post Answer
if there is binary tree which one is the easiest way to delete all child node?
What is this pointer in c++?
Is c++ a software?
Difference between a homogeneous and a heterogeneous container
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.
How are Structure passing and returning implemented by the compiler?
How do you declare A pointer to function which receives an int pointer and returns a float pointer
What is polymorphism & list its types in c++?
Explain storage qualifiers in c++.
What is the limitation of cin while taking input for character array?
write a function signature with various number of parameters.
What is endianness?