Tagged Questions
2
votes
2answers
361 views
C++: Chr() and unichr() equivalent?
I could have sworn I used a chr() function 40 minutes ago but can't find the file. I know it can go up to 256 so I use this:
std::string chars = "";
chars += (char) 42; //etc
So that's alright, but ...
2
votes
3answers
2k views
Comparing chars in a character array with strcmp
I have read an xml file into a char [] and am trying to compare each element in that array with certain chars, such as "<" and ">". The char array "test" is just an array of one element and ...
1
vote
9answers
332 views
Segmentation fault when appending two chars - C++
I am trying to append two chars but for some reason I am getting a segmentation fault.
My code is like;
#include <string.h>
char *one = (char*)("one");
char *two = (char*)("two");
strcat(one, ...
0
votes
1answer
222 views
Converting int to Char* giving ascii values C++
hi im trying to intialize a variable
im calling it
int Score;
char Buffer[1024];
im using SDL so to display them i had to convert Score to char
With this im incrementing the score
...
0
votes
3answers
111 views
Storing Chars Into Strings in C++
So right now I have this code that generates random letters in set increments determined by user input.
#include <iostream>
#include <string>
#include <cstdlib>
using namespace ...
0
votes
3answers
278 views
BSTR and SysAllockStringByteLen() in C++
I'm new to C++, so this may be a noobish question; I have the following function:
#define SAFECOPYLEN(dest, src, maxlen) \
{ ...