Summary: hi I have a quite strange problem in one of my programs. I'd like to strcat(string1,"test") two strings, but after that, string1 hasnt changed at all ...
Summary: I have written a code to retrive data from a file in C++,as follows cStud S; while(!f.eof()) { f.read((char*)&S,sizeof(S)); coutS; } where cStud...
Summary: Ahhh yes i remember posting about the same problem. Trust me in C++ classes are a must. If you have learned about structs then you already knows what ...
Summary: Thanks, that really helped me fixed that problem. Now I have another problem with another class. I made a random class to generate random numbers for...
Summary: In C, how can u read values into an array (ex. array[row][col]) and exit from the for loop right after the user types 0 in the 1st column of any row? ...
Summary: With iostreams in C++ you can use the peek function to look at the next character in the stream without extracting it. The following program will firs...
Summary: I keep getting an error in Borland C++ personal edition when ever I try and use graphics. I keep getting the error "undefined symbol 'DETECT'. I have...
Summary: Hello, do you know where I can find the source code in C that calculates a 16-bit CCITT SDLC CRC? It uses the polynomial X**16 + X**12+X**5+1. Thanks....
Summary: Hello all, I was wondering if anybody could help me with timing in C. Im trying to make a solar system program, and putting aside all the OpenGL worri...
Summary: Please help me with summation in C lang. I m trying to divide the summation of alpha * delta with summation of alpha this is half the program that i ...
Summary: Hello!! OK...I got a problem here with my Visual C# .NET mail course... I'm trying to make a program, and my book tells me exactly how to do it...and ...
Summary: hi, i'm having a table in mysql which has a column name DOB, the field of which defined as date. & i'm inserting the data into it, after converting ...
Summary: I am using a header file from a book I have been using but keep getting errors shown below when trying to compile certain programmes also from the boo...
Summary: I have been having some problems lately... I am writing my own opensource OS called Ness in C. I have a multiboot ELF kernel that boots up :-), turns ...
Summary: I am having problems with some code containing a linked list which i am writing in C i have defined an order structure to hold data for an order and t...
Summary: Hi there, I'm pretty new to programming in C/C++, and I've been trying to solve this all day, but to no avail. I was hoping someone here could help sh...
Summary: Hi Razor2.3, Thanks for your reply. I tried your approach. However the problem remains there only.I am pasting the output. ---------output------------...
Summary: I do not believe there is a limit in what you pass to a system call, as long as your system resources can accomodate the load (memory, etc). The only ...
Summary: I am doing serial communication in C++ using a file handler. I am having a problem with nulls. I need to receieve a 6 byte string with a null in the ...
Summary: I am a beginner in C++ and in real need of some help concerning the char pointer. When i compile the following code: #include <iostream> int main()...
Summary: > How can i solve the following series in 'C'- 1+1/22+1/32+......+1/n2. First, you input n from the user. scanf would probably work. Then, you start...
Summary: I am trying to get the text input from a textbox and I assign it to a string --> eg. String s = mytextBox.getText; The text that I entered was "Mike" ...
Summary: "Do you know how to cause an overflow?" There are lots of simple examples on the Internet. The most famous one is from "Smashing the Stack for Fun an...
Summary: Hello all, I am trying to write a simple program in C using DevC++ compiler (Bloodshed) to search all the folders and drives on my computer for a part...