Hi,
My friends i need website I can download Turbo C++ software free downlaod.
thx
Where can I find a download site for Borland Turbo C++ 3.1? It's an old version a college course is using. (c) 1991, 1992 so a Win3.1 app, but working on Win2000. Thanks.
I need directions for creating a dynamic library in visual studio 2005, instead of a static library. The library should not necessary be conforming to the "COM" sta ndard the only demand is th...
This is my program
******************
#include <iostream>
using namespace std;
int main()
{
int i = 0;
string message = "";
// message = the value of "i" converted to string...
I'm getting this error at runtime:
*** glibc detected *** double free or corruption (fasttop): 0x0804a008 ***
Aborted
This happens when an instance of one class encapsulates and assigns...
I have a problem trying to get CSV files to work with my program. It works fine with tab delimited but not with csv. Anyone know of a way to read in csv files and write back out to them. The ...
Hi,
I have a linking problem after attempting to build the file. The error is as follows:
glovenew.obj : error LNK2001: unresolved external symbol "public: virtual __thiscall vhtIOConn::...
I saw the following structure in time.h which only has
seconds as the smallest increment.
struct tm {
int tm_sec; // seconds after the minute - [0,59]
int tm_min; // m...
Hi Experts
I would like to have source code to find Inverse of N X N matrix
either in C or in C++
Any algorithm can be used Crout's, Gaus' or finding co-factor
Regards
Shiju S N
Hi all,
Is there a way to convert a string "ASCII" to its Decimal & hexadecimal value. For example
"Hello this is a test"
Hex:
48 65 6c 6c 6f 20 74 68 69 73 20 69 73 20 61 20 74 65...
Hello experts,
I am working on a matrix class for practice. I just added a inverse and transpose function, and have some questions about the class ? I would appreciate someone to give m...
How can I convert a standard string to an integer?
Hello I have the following code:
#include <iostream.h>
#include <fstream.h>
#include <string>
#include <iomanip>
int length(const char* str)
{
int length;
for (int i=0;str[i]!='\...
Title explains it all ;)
I want to convert a string like "ûüâäç" etc to UTF8 encoding...
How can I do this with an easy C(++) function?
Here is my string:
A B(C) D
I wrote a trim function that removes leading and trailing whitespace.
After applying trim, I get a string like this:
A B(C) D
I have problems deletin...
I found a simple code on the net about video capturing with opencv functions. However, when i compiled it, it didnt work, cvQueryFrame didnt grab a frame. Actually my camera doesnt a usb camer...
I'm currently trying to develop an application that can generate keystrokes into another existing application. I've read around a bit and found that SendInput() is probably the function I nee...
Hiello All,
Can we use a string in C++ switch case.
Can I pass a string to switch,
eg:
switch ( input )
{
Case ITEM_CRISPS:
printf("Walkers Cheese & Onion\n");
break;
...
how do you convert a int number into hex form
I am looking for C/C++ code to convert a Unix timestamp (seconds since Jan. 1, 1970) , e.g.
1193060347
to a human-readable date format, e.g.
Mon, 22 Oct 2007 13:39:07 GMT
Hello, how do I convert from IP address to network byte order and then back to IP address using char and long?
I have:
char ipaddress[15]='127.0.0.1';
long x;
x=inet_addr(ipaddress);
...
how do i write a Win32 Console application that starts a new process. That process should be an instance of Notepad.exe. The program should output the Process ID of the created process. Onc...
This is weird:
A description of the problem:
The code here (most likely full of errors / oversights) doesnt seem to operate in the proper timeline. The std::cout line near the bottom appe...
Today will be the first evening for an engineering class... I've already previewed tonight's lecture material that includes some sample C++ code.
I took C++ ~10 years ago. Haven't used it...
I recently got charged with updating / modifying an existing C++ DLL. I starting updating some of the functions to their security-friendly counterparts and am running into problems.
It see...