Is there a sort function in c++?
No Answer is Posted For this Question
Be the First to Post Answer
When should you use global variables?
what are the events occur in intr activated on interrupt vector table
How a new operator differs from the operator new?
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.
What is time h in c++?
What are raw sockets, where they are efficient?
write a program that withdrawals,deposits,balance check,shows mini statement. (using functions,pointers and arrays)
Why the usage of pointers in C++ is not recommended ?
Is c++ a float?
Why isn't sizeof for a struct equal to the sum of sizeof of each member?
Of the numbers 12 23 9 28 which would be at the top of a properly implemented maxheap a) 28 b) 9 c) Any of them could be
What are c++ stream classes?