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 |
What is encapsulation in c++?
Can the creation of operator** is allowed to perform the to-the-power-of operations?
What is a virtual destructor?
What is the difference between #import and #include?
What is constructor and destructor in c++?
tell me about yourself ?i want answer for frehers with various exasmples?
What is size of a object of following class? class Foo { public: void foo(){} }
Can we use struct 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?
How to declare a function pointer?
What is an accessor in c++?
How can you quickly find the number of elements stored in a a) static array b) dynamic array ? Why is it difficult to store linked list in an array?how can you find the nodes with repetetive data in a linked list?