What's the best free c++ profiler for windows?
No Answer is Posted For this Question
Be the First to Post Answer
Write my own zero-argument manipulator that should work same as hex?
What's the most powerful programming language?
What is operators in c++?
Can we distribute function templates and class templates in object libraries?
What is pure virtual function?
What is switch case in c++ syntax?
Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == ) y-= 7; else y = 8; if the value of x is 4 before the nested IFs are executed, what is the value of y after the nested IFs are executed?
When do we run a shell in the unix system? How will you tell which shell you are running?
What is class definition in c++ ?
Write a program which is required to process the time of a clock in hours and minutes, entered from the keyboard. With this program, there are two requirements for any data entered by a user: 1. The data must be of the correct type (in this case, two ints). 2. The data must be in the correct range: this means that, for the minutes, negative numbers and any number above 59 must be rejected; for the hours, negative numbers and any number above 23 must be rejected. Output error message for invalid data input. Output the time one and a half hour after the time input. i.e. Hour: 22 Min: 32 One and a half hour after 22:32 is 00:02
What are special characters c++?
What is the difference between method overloading and method overriding in c++?