Profiler in projects?
Answers were Sorted based on User's Feedback
Profiler is an utility which is used to find the
optimization inputs in running the application.
in Unix, gprof and gcov will serve the purpose. for more
details please google it..
| Is This Answer Correct ? | 2 Yes | 0 No |
Write a single instruction that will find the remainder of integral division when x is divided by y. Have the answer stored in z.
What is decltype c++?
what is upcasting in C++?
We all know that a const variable needs to be initialized at the time of declaration. Then how come the program given below runs properly even when we have not initialized p?
What are the advantages of prototyping?
Write a corrected statement in c++ so that the statement will work properly. if (x = y) x = 2*z;
What is #include math h in c++?
catch(exception &e) { . . . } Referring to the sample code above, which one of the following lines of code produces a written description of the type of exception that "e" refers to? a) cout << e.type(); b) cout << e.name(); c) cout << typeid(e).name(); d) cout << e.what(); e) cout << e;
what are the iterator and generic algorithms.
How does class accomplish data hiding in c++?
Which algorithm do you like the most? Why?
What are c++ data types?