Hi all, Can anybody tell some 17 memory related Errors in C language. This one asked in one Written test. I know only some. I need others. like 1.Null pointer...
Dear friend, I suggest you to kindly enter your details in the group's database. Its available at the following link... ...
Programmers-Town@yaho...
Feb 1, 2005 6:53 pm
5491
HI! the problem code that u satated occurs when some dll files are missing from the stolen version of c, c++.... try it turbo c latest version. Kishore...
Hi, I tried what you said, but on compiling inthe way you said ... i got error cc1: error: unrecognized option `-i' I am using gcc version 3.3.3 20040412 (Red...
I have been writing console programs for some time, and the black and white is getting boring. i was wondering what you all think is the best way to get...
HI ALL, I am using Linux 8 kernel version 2.4.18-14 and I am following Rubini Corebett (DEVICE DRIVER BOOK) which has been written for version 2.4.9-9. My...
This was ur mail Hi. did a assignment for my course last year. now need help to get it working. it sort of works half way. you can open a previously saved...
hi frnds , can any body tell me how to create the new Data structures in the C/C++. eg pow(2000,1000); then it's value will be very large and if i want to...
hi all... Can anybody clarify the defference between following two? #define NODE struct node typedef struct node NODE; First one is compiled by preprocessor,...
Reply embedded. ... From: madhavaram srilatha [mailto:srilatha_66@...] Sent: Thursday, January 27, 2005 12:30 AM To: programmers-town@yahoogroups.com ...
Naveen Khattar
nkhattar@...
Feb 3, 2005 2:53 pm
5503
Hi, The error here is in class declaration. Change the class declaration as follows: class singleton { private: static singleton* classObj; singleton(); ...
A snippet from msdn // This program illustrates how to write a singleton class (a class that // can have only one instance) in C++. The trick is to make the...
hi , i have a problem,... i want to know when a file is opened in linux enviornment.ie.if someone opens a file to read or write using any application available...
hi frnds , can any body tell me how to create the new Data structures in the C/C++. eg pow(2000,1000); then it's value will be very large and if i want to...
Hi, When objects in memory are to be passed across a network to another host or persisted to storage, their in-memory representation must be converted to a...
Hi, For the description given below how can I optimize the code. Consider the case where we have two threads A and B A calls function d() B calls function d() ...
... following ... written for ... linking the module ... giving kernel ... forcefully also ... did compile with including Kernel path??? as follows: cc -c...
Hi Frends, Am one of you C++ developers. The favour i want here is that please name some very good books like "effective C++" and "More effective C++", which...
My project contains about 147 .obj files that i need to link together. I made a .bat file that contained the following command.. tlink /m/v/s a.obj b.obj ...
Hi, Macros are preprocessor directives that replace a piece of code with something else.To avoid deadlocks you can use semaphore or mutex.I have reframed your...
Hi, Use system("clear"); instead of clrscr();. clrscr() & getch() are part of the header file "conio.h" which is mostly DOS-specific(non-standard as well). ...
Hi Everyone, This is my first mail to the group. I had a problem with the following program to convert a string to uppercase using the transform algorithm. ...