Refers to the (string.h) header files available in C++ (and C). Also, refers to the representation of a string in C.

learn more… | top users | synonyms

1
vote
1answer
50 views

Creating a dynamic Cstring [duplicate]

I am facing this position where I need to create a dynamic string of user-inputted size (so I tried used a dynamic cstring). char * S; int x; cin >> x; S = new char[x]; for (int i = 0; i ...
-1
votes
2answers
54 views

char[] to CString Conversion

I have time in char[] format but I need to convert it to CString. Here is what I have but it does not work : GetSystemTime(&t); char time[60] = ""; char y[20],mon[20],d[20],h[20],min[20],s[20]; ...
0
votes
1answer
27 views

(C) Strange crash when using feof

char *headerString = strstr(line, "...\">"); printf("%d", feof(site)); //all is ok sscanf(headerString, "...\">%[^<]", tempQuestion.header); ...
1
vote
1answer
52 views

Multibyte CString to Unicode MFC

I have 2 MFC projects. A library project uses Multi-byte Character set. An executable project uses Unicode Character set. I only wrote the library project and have to use it in the executable. ...
-1
votes
3answers
74 views

How does this loop end?

code example like this: #include<stdio.h> void main() { char *s={"abcd"}; do { printf("%d\n",++s); } while(*s); } Where does the pointer s point when the loop do ...
1
vote
0answers
29 views

How to determine CString Type for Linking?

I got a 3rd Party library that I want to link against. I am having trouble determine the kind of CString I need to provide. My character set is set to none set and changing it would be prohibitively ...
-2
votes
1answer
63 views

Accessing a specific character in an array of strings in C

Here's the code I'm using to load the file in line by line: int i = 0; FILE *fp = fopen("../sources/files/p13num.txt","r"); if(fp) while(i < 100 && ...
-4
votes
3answers
105 views

C compare string literal with function returning char pointer

Why does this code: strcmp(myfunction(0), "OK"); where myfunction is defined like this: char *myfunction(int p) { if (p == 0) { return("OK"); } } give the following error: ...
0
votes
0answers
14 views

Overloading operator[] to work with c strings

I'm trying to overload the operator [] to work with c strings but it doesn't want to work. Object* operator[](char *name) { return data->objectForKey(name); } Sample["ObjectName"]; and it ...
0
votes
0answers
79 views

c++ heap corruption detected in local CString assignment

I am writing a multithread program: I created a thread to take image from a camera and update the picture element in user interface. I then created a CString to set image file name and then save it to ...
0
votes
2answers
110 views

Error: Conversion to non-scalar type

I am making a set of derived classes for an assignment. I am instructed to use char arrays (c-strings). When I compile I keep getting the error: Homework11.cpp: In function âint main()â: ...
0
votes
2answers
131 views

Heap corruption error with delete []

So I'm a pretty big new at C++, so I'm sure this is a relatively simple problem, but I have a legacy C++ app I'm trying to trace a heap corruption problem and have traced it to this function: void ...
0
votes
1answer
56 views

wmemcpy & wcscpy functions causing crashes

I'm trying to copy a wide c-string from one place into another. I'm using Visual Studio 2012 express on windows8 64-bit platform. It works perfectly fine unless i try to run the application on my main ...
0
votes
0answers
15 views

What is causing MFC application to stop

I have inherited a Visual C++ 6.0 application and am trying to add some tokenizing code to it. I have already discovered that CString.Tokenize does not work for VC++ 6.0, so I am going back to basic ...
0
votes
0answers
54 views

C Adding a single quoted character to a character array?

So I found myself doing something that I thought was 100% straightforward...but it has stumped me. I have part of the following class function: std::string BigNumber::print() { bool zerosBroken = ...
1
vote
2answers
54 views

I am getting a bunch of extra chars when i try to reverse a cstring in c++

The string entered by the user appears to be reversed but it is also followed by a bunch of garbage chars. Here is my reverse function: void reverse(char str[]) { char reversed[MAX_CHAR]; ...
0
votes
1answer
31 views

Why isn't my string being passed properly to this thread-invoked function?

I am working on a multithreaded application in which a client program generates request threads that send strings to a data server program, which answers by sending strings back. Unfortunately, I am ...
1
vote
3answers
151 views

CString or char array which one is better in terms of memory

I read somewhere that usage of CString is costly. Can you calrify it with an example. Also among CString and char array, which is better in terms of memory.
2
votes
1answer
188 views

MFC C++ How do I display a const char value in MessageBox?

I hope that the title was good enough to help explain what is needed. After solving this much of my project should be done. When I did this char e[1000] = "HELLO"; CString msg; ...
-2
votes
2answers
210 views

How to reverse a character array in c++? [closed]

Our teacher wants us to write a program that reverses the order of a character array. So like if the user inputs "hello", the program will output "olleh". Here's the function that we were given: ...
3
votes
4answers
176 views

Convert char** (c) to vector<string> (c++) [duplicate]

How would one go about converting a C char** to a C++ vector? Is there some built-in functionality one can utilize to do this, or is it better to accomplish it through a series of iterative steps? ...
-1
votes
3answers
79 views

What does _T stands for in a CString

What does the "T" represents in a string. For example _T("Hello").I have seen this in projects where unicode support is needed.What it actually tells the processor
0
votes
1answer
88 views

getline() omits first letter of my output from array.

I'm coding a simple Mad Libs program for school. The code I'm posting iterates through an array searching for certain prompts. Once found it uses the prompt to ask a question and records the answer. ...
0
votes
2answers
114 views

How to convert CString to CByteArray?

I know that converting CByteArray to CString is pretty straightforward. But how do I do it the other way around - from CString to CByteArray?
0
votes
1answer
72 views

Concatenate cstrings c++

When I run this, I get no errors, but the string does not get concatenated. Could someone tell me what I'm getting wrong here. char *con(const char str[], int n) { char * t = new char[60]; ...
-1
votes
2answers
101 views

The easiest way to compare string containing integer to string containing hex

I have two strings one with integer (eg string strInt = "100") and one with hex number (eg string strHex = "0x64"). Whats the quickest/nice/safe way to compare if the values of strInt and strHex are ...
3
votes
2answers
192 views

Shall we treat BSTR type in COM as value or reference?

From book ATL Internals, I knew BSTR is different from OLECHAR*, and there are CComBSTR and CString for BSTR. According MSDN Allocating and Releasing Memory for a BSTR, I knew memory management ...
0
votes
2answers
57 views

Input validation for a c-string that is passed by reference [closed]

#include "cstack.h" #include <iostream> #include <cstring> using namespace std; bool isValidExpression (CStack&, char*); int main (void) { char expression[21]; ...
3
votes
7answers
165 views

Safely concatenate c-strings in class constructor

I have a class that needs to concatenate two const char* strings during construction, and even use the result (concatenated string) later on in the initialization list. const char* SUFFIX = "suffix"; ...
-1
votes
3answers
86 views

Getting weird number when trying to read a number from file

I'm trying to read a number from a text file, and I'm not allowed to use a binary file. I've tried two methods to do this, and both return a strange result. The first method: char *theNumber; ...
0
votes
3answers
106 views

Strcmp does not behave as expected, Returns 0 when comparing two unequal strings

I am having understanding a weird behavior of strcmp function, which will be illustrated by the following code: #include <iostream> #include <cstring> using namespace std; int main() { ...
4
votes
3answers
540 views

How should I allocate memory for c-string char array?

So in attempting to learn how to use C-Strings in C++, I'm running into issues with memory allocation. The idea here is that a new string is created of the format (s1 + sep + s2) The text I'm using ...
1
vote
1answer
62 views

How to customize a method like 'stringWithFormat'?

I want to customize a method with formated string input and (const char *) return,but the problem is like below... Can anyone tell me how to resolve it? Thanks.
-1
votes
3answers
62 views

C-string size including null terminater

char* str = “ABC\n”; When asked "How many characters are allocated for this string?" why is the answer 5?
0
votes
2answers
100 views

How to initialize CString& parameter in a function

I have an existing function, and I'd like to add a parameter and set a default value for it so it won't affect other modules that use it. BOOL myFunc(int A, CString& strTest); Initializing it ...
1
vote
1answer
295 views

Use CString with sprintf

I have some C++ code where I need to use CString with sprintf. In this code I'm creating file names that are CStrings that are defined by sprintf. The code is below. double Number; Number = ...
0
votes
2answers
200 views

Concatenate CString and Long in VC++?

I have to concatenate two CString variables and two long variables in one CString. I found one Format function that I have used like this: CString str = "Some Data"; str.Format("%s%d", str, 123); ...
1
vote
1answer
134 views

MFC CString Linker error between two projects

I have 2 projects in c++ (MFC) One is a library project which im using in the second one (an executable one). They work together great, until I call a function from the regular project that takes a ...
0
votes
2answers
107 views

splicing cstrings with strtok, only works on first execution of loop

I am trying to use strtok to splice a line read into a cstring into individual strings. Yes I know this could be done much more easily with string objects, but I'm not allowed to use them. When this ...
0
votes
3answers
41 views

Need explanation of Word2 variable

I DO UNDERSTAND THAT THIS PROGRAM IS NOT ALLOCATING ENOUGH MEMORY. What I need help with is describing an explanation of what happens when this code is executed. I put "Since only 4 spaces are ...
0
votes
1answer
277 views

Issues Converting wstring to TCHAR [duplicate]

I'm fairly new to programming, and I'm trying to write a program where a user inputs a date, then that date is added to the file directory name, then that file directory is searched. Here is what I'm ...
0
votes
2answers
151 views

Working with WinAPI functions which use C style strings as OUT parameters

Given a WinAPI function which returns it's result via a C style string OUT parameter e.g.: int WINAPI GetWindowTextW( _In_ HWND hWnd, _Out_ LPTSTR lpString, _In_ int nMaxCount ); Is ...
0
votes
1answer
116 views

How to resolve a NULL cString crash

I'm getting a crash with the following encoding fix I'm trying to implement: // encoding fix NSString *correctStringTitle = [NSString stringWithCString:[[item objectForKey:@"main_tag"] ...
0
votes
0answers
71 views

copying char into CString

I tried create CString by addition chars CString HiAlarm; char* buffer = "something"; for (k = i+1;buffer[k] != ';';k++) { HiAlarm = HiAlarm + (L"%s",buffer[k]); } and when ...
1
vote
0answers
46 views

How to find a character string within a string?

It's only every once in awhile that I have to write in c++. My problem is how do you find a character string within a string? Then save that line, and then look for a set of numbers in that line. ...
1
vote
1answer
138 views

Difference occurs when convert _variant_t to CString or displayed in (“%s”) using _variant_t.bstrVal

I want to convert _variant_t to CString, and use this: #define VartToCStr(vart) (_variant_t(vart)).bstrVal If I pass the value to CString, it just works ok, but to CString::Format(_T("%s")), ...
1
vote
1answer
150 views

Having trouble concatenating CStrings in an MFC calculator application

void CcalculatorDlg::OnBnClickedButton1() { CString grabData = _T(""); m_display.GetLine(0,grabData.GetBuffer(10),10); grabData += _T("1"); ...
0
votes
0answers
189 views

In MFC, how to I read in an edit control as a character array?

Right off the bat, here is my code: void CRealFitnessDlg::OnBnClickedMfcbutton1() { //create vectors and iterators std::vector<char[256]> weights; std::vector<char[256]> ...
0
votes
3answers
220 views

Print out elements of an array of strings in c

I've created a function that takes a pointer to the first element in a C-String array. This is the array, and how I went about making it: char element1[60] = "ubunz"; char element2[60] = ...
0
votes
3answers
197 views

CString to void*

Is it possible to convert CString to void*. I made a void pointer and pointed it to some object. Now I saved this in a CString. Now I want to convert back to void* from CString. void* pPointer = ...

1 2 3 4 5 8