In Visual C++ 6.0 is it possible to give a custom environment (i.e. new or modified environment variables) to a debug session that differs from the currently...
... Yes it is clear, thank you. I removed the .h part of the header and I couldn't compile it. I was using #include <iostream.h> #include <fstream.h> #include...
... I did that and it worked well but I still get an error msg for the otehr two files iostream and fstream. I checked the settings for the compiler and the...
"It's an evolution - it's flexible, it's adoptable, it's solid with core competencies, it's affordable, it's at hand and friendly and it's a venture that has...
http://www.google.com.mt/search?num=100&hl=en&ie=UTF-8&safe=off&scoring=d&q=%22stl+allocator%22&btnG=Search&meta=lr%3Dlang_en ... From: Paul Herring...
Console application (in Windows context) is 32-bit Windows application, period. It can access the entire Win32 APIs, can take advantage in the Windows...
It is a floating point indefinite. This is the result returned by the math function when its argument is undefined for that function. Like sqrt or log a...
thanks a lot, great answer ! I didn't know all that... it seems like I still have a lot to learn ! are all "character mode appns" console appns under linux ? ...
repplst
repplst@...
Jul 1, 2004 8:36 pm
37973
Hi, ... You're welcome. ... We all learn something everyday. ... I am not a Linux user but I think they use the same term to describe character mode apps. At...
the problem is how you output the floats/doubles here is an extract from libc manual ################ `e' `E' A floating point number (double or long double)....
carmine
brtzsnr@...
Jul 1, 2004 10:24 pm
37975
In linux all executables are the same, be they console-based or x-windows-based. X-windows programs just call some functions from a shared object (linux...
What type of compiler are you using? The Borland Command-line compiler will give that message if the ilink32.cfg file is not in the Borland\BCC55\bin...
dear friends, I have very urge to know how we connect C or C++ programs to any database .Is it possible or not. Plz reply soon............. Puneet Yahoo!...
If you are using MFC, look up the "Enroll" tutorial. If you are using Oracle, use Pro*C to connect. If you are...um...you DID tell us exactly what your OS...
Hi: The fastest way to connect to a database is though SQL-C, normally, each DBMS company provides each own C preprocessor to compile the programs that include...
a bit of your source code would be helpfull.... but here is a general implementation of stacks.... (in c not c++ - it can be adopted easily for use with...
carmine
brtzsnr@...
Jul 2, 2004 10:24 pm
37981
hello, please look in to the following patch of a program ... ... ... printf("check1\n"); struct additionallinks *newptr=new additionallinks; ...
Hi I want to know what is Memory Leakage. I went to some interview. the Interviewer was very satisfied with my C/C++ ability. But he said that i need to do...
Please help! When executing the following program I receive - 'The instruction at "0x00405f7b" referenced memory at "oxfffecccc". The memory could not be...
I think that a memory leak is when a part of memory has been allocated somewhere in your program but never freed after. one thing I don't know is if the memory...
repplst
repplst@...
Jul 3, 2004 5:15 pm
37986
Can any body tell why the prog don;t works... #include<stdio.h> #include<conio.h> #include<stdlib.h> int q[6];int f=-1,r=-1; void print(); void...
... You were right. But once I compiled the file it didn't matter if I took away the .h from the end of the name of the header file the compiler would still...
Hi, I'm writing a WinAPI app. I'm wanting to delay the execution between deifferent functions, something like: execute function 1 delay execute function 2 I...
... FindWindow()? EnumWindows()? ... Use Spy++ to get the list of messages you need to be looking at. If you don't have Spy++, you are going to have a much...