Summary: Hi I'm having some trouble compiling the program with string::find() using LEDA lib. I got this error message during compilation g++ -c -DDB...
Summary: Hi, I don't know how to do the following because I don't know how to use the string array in C++. Please Help!!! Thanx! #include <iostream.h> #incl...
Summary: You need to allocate space if you are going to do it the C way. There is a string type in C++. #include // note not string.h #include using namespa...
Summary: Hello. Does anybody know how to use the current time in C++? What I intend to do is have a function within my program execute when hours past midnigh...
Summary: Hi As you know any string in C is an array of type "char". So lets assume you have the following: char str1[13] = "first second"; then you can start c...
Summary: Hello, I've got a problem putting together dynamic arrays in C. I can do it fine in C++ but I've never had any real instruction in C and all of this ...
Summary: Hi I'm writing a simple server-client program in C. I'm having problem with manipulating strings. If I put something like this: char command[MAXCOMMAN...
Summary: I'm not sure I remember from my C++ days (which are quickly coming back to haunt me since my operating systems class is all C...), but do you need to ...
Summary: I've used this before in C. char key; while (key != enter) {//Enter code??? key = getch(); printf("*"); } I can not remember what the keyboard code...
Summary: How to use environment variable in C? Hi, I'm trying to replace a column in a comma seperated file with a column in another file using sed/awk. Can...
Summary: I would like to use strings in a program that I am writing so I made the following test file to find my error. #include #include int main() { s...
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: You can made this functions. With C++ you get this functions to use when you include string.h But if you programing in C this is one solution. void s...
Summary: a)how do i write a program in C that reads English text to end of data,and print a count of word lengthi.e, the total number of words of length 1 whic...
Summary: the way around this if i remember is to read a line at atime. place this into a string array then compare each character with the characters in the st...
Summary: sir, in C i want to draw image in screen using graphics.to draw this first find length and width of image .and then putpixel command to put (x,y) pos...
Summary: Hello, Does anybody like to help me in the following problems ? How to declare a variable of string using pointer, instead of array. eg. char *s++; t...
Summary: Why not you try the library functions available in string.h try using string concat function available in the library rather using the binary concaten...
Summary: Code your own, its easy enough. Use the Create Process API and providing the text box contains a properly formed URL, the CreateProcess API will load...
Summary: True enough, SN, though I have been holding back! =) In answer to your questions, Jack: I refered to Grady Booch in an attempt at humour; he is a maj...
Summary: You need to start with the correct understanding of the definitions of the words you have including with your inquiry. To start with the words you us...
Summary: find the ones and zeroes stored in memory for a particular variable declared in c using shift operators. find 1's , 0's in memory by using shift opera...
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 ...