Latest Answer: A profiling is a performance analysis tool that measures the behavior of a program as it runs, particularly the frequency and duration of function calls. ...
Latest Answer: 7150u have to worry because this is a master program i had created when i started with c ...
Latest Answer: strstream is the class that specializes iostream to use a strstreambuf for input and output with arrays of characters in memory. The class strstream provides functionality to read and write to an array in memory. It uses a private strstreambuf object ...
Latest Answer: You can write Multithreading application by using POSIX library of Linux ...
Explain "passing by value", "passing by pointer" and "passing by reference"
Latest Answer: It is Run Time Type Identification. ...
Latest Answer: new which cannot be used as variable in c++ ...
Latest Answer: Calloc:- #include void *calloc(size_t nelem, size_t elsize);The calloc() function allocates space for an array of nelem elements of size elsize. The space is initialized to zero. Malloc:#include void *malloc(size_t size);The malloc() function allocates ...
What will happen if I allocate memory using "new" and free it using "free" or allocate sing "calloc" and free it using "delete"?
Latest Answer: Memory alignment is the restriction imposed on memory allocation in such a way that values associated with multibyte get assigned only at certain places of memory. Such Memory alignment though generally not very common issue in OOPS terminology as the ...
View page << Previous 7 8 9 10 [11] 12 13 14 15 16 Next >>

Go Top