Latest Answer: stty is used to set your terminal options. Following are some of the typical examples1. stty echo -iuclc The above command will switch off character display on your screen and ignore any case differences (ignore upper case and lower case). This ...
Latest Answer: u can use ipcrm .....and use kill -9 to clean the process... ...
Latest Answer: A file system is a collection on BOOT BLOCK, SUPER BLOCK, I-LIST and DIRECTORY AND DATA BLOCK. Every directory have a pointer to a i-node(Information node) number and the directory name. Every i-node have the details about the file not the data. ...
Answer posted by sonal on 2005-06-08 08:15:23: a memory leak occurs when mem is allocated but never freed . leakes can b caused by using malloc() without using any free(). but leaks can also be caused
Latest Answer: The former example explains dangling pointers which are a form of leaked memory. In book terms though, the former explanations are more true. Any memory malloc'd or new'd in C++ and not free'd or delete'd will leak memory.There is a popular assertion ...
Latest Answer: system allow us to create and use two kinds of libraries - static libraries and shared (or dynamic) libraries.shared and dynamic libraries are one and the same. the object files from the dynamic(shared ) library are not inserted into the executable ...
Latest Answer: Static libraries can be created as:::gcc -c -Wall a.cgcc -c -Wall b.car -cru libmyrand.a a.o b.oshared libraries can be created as::::gcc -fpic -c a.cgcc -fpic -c b.cgcc -shared a.o b.o -o libmyrand.so ...
Latest Answer: pstack is command to debug core ...
Latest Answer: I am assuming the question is - port 32 bit appl to 64 bit os.This can a simple checklist of things one can check for -1. Int, long will be 64 bits so care should be taken to see if there are any comparisons or allocations that assume a certain fixed ...
View page << Previous 1 2 3 [4]

Go Top