Answer Posted / reejusri
In symbian , we have a tool called profiler which provide
different type of information about the application(s) like
which thread is taking how much CPU time, memory usage,
life time of an object, resource utilization etc..,
Using of Profiler to get above info is called profiling.
To use this we have to add the profiler .lib and related
functionality code to our program.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is runtime errors c++?
Who calls main function?
Do you know the problem with overriding functions?
What is protected inheritance?
How much maximum can you allocate in a single call to malloc()?
How can you prevent accessing of the private parts of my class by other programmers (violating encapsulation)?
Why ctype h is used in c++?
A prime number is a number which is divisible only by itself and 1. Examples of the first few primes are 2, 3, 5, 7, 11. Consider writing a program which can generate prime numbers for you. Your program should read in and set a maximum prime to generate and a minimum number to start with when looking for primes. This program should be able to perform the following tasks: 1. Read the maximum number from user (keyboard input) to look for primes. The program should not return any primes greater than this number. 2. Read the minimum number from user (keyboard input) to look for primes. The program should not return any primes less than this number. 3. Generate and print out every prime number between the maximum prime and minimum number specified by the user.
How much is c++ certification?
What is microsoft c++ redistributable?
What does it mean to declare a member function as static?
Can we specify variable field width in a scanf() format string? If possible how?
What is do..while loops structure?
What is a block in c++?
What are the unique features of C++.