The const-char tag has no wiki summary.
0
votes
1answer
15 views
Char array size when using certain library functions
When using some library functions (e.g. strftime(), strcpy(), MultiByteToWideChar()) that deal with character arrays (instead of std::string's) one has 2 options:
use a fixed size array (e.g. char ...
0
votes
2answers
87 views
Adding a colon (:) to an unsigned char in C++
I am writing an Arduino library for simple data transfers between the Arduino and a computer using a serial feed. I have created the library, etc. However, I am having issues with taking a char array, ...
0
votes
3answers
233 views
Compare Objective-C const char with NSString
I was wondering if there is a simple way to compare a const char with an NSString, or do I have to convert the const char to an NSString before doing do?
I have been looking through Apple docs but ...
-1
votes
1answer
142 views
append const char variables wih string
I have 2 integers, whom I converted to const char* by passing to a user defined function. Now I want to append these 2 variables into a command line string as
"gnome-terminal -x sh -c 'cd; cd ...
1
vote
1answer
177 views
const char * changing value during loop
I have a function that iterates through a const char * and uses the character to add objects to an instance of std::map if it is one of series of recognized characters.
#define CHARSEQ const char*
...
2
votes
1answer
237 views
const char pointer declaration in struct
I'm trying to do this, but my compiler won't let me:
struct {
const char* string = "some text";
} myAnonymousStruct;
I believe it's because no assignments can be made in a struct ...
0
votes
0answers
139 views
How do I convert a const char * to LPTSTR in C++?
I need to convert a const char * to a LPTSTR and I'm having some issues. I've tried the answers suggested in Convert std::string to const char* or char* however they have not been of any help.
How do ...
0
votes
2answers
233 views
Error LNK2001 while using my static library
I'm having LNK2001 issues while building my solution.
The solution has 3 projects, one of them if just a main that returns 0, so I'll exclude it from the problem.
One project (SerialPort) is a .lib ...
2
votes
4answers
247 views
Creating file names automatically C++
I'm trying to write a program in C++, which creates some files (.txt) and writes down the result in them. The problem is that an amount of these files is not fixed at the beginning and only appears ...
7
votes
2answers
333 views
Using char* as a key in std::map, how does it work
This question relates directly to using char as a key in stdmap.
I understand what the compare function passed in does and why its required for char * types as a key. However, I'm uncertain as how ...
1
vote
3answers
217 views
How to convert const char* to const WCHAR*
I have something like this:
if(GetFileAttributesW("C:\\Directory")!="INVALID_FILE_ATTRIBUTES") {...}
I get error: cannot convert 'const char*' to 'const WCHAR*' for argument '1' to 'DWORD ...
3
votes
2answers
290 views
C++: passing a string-literal of Type const char* to a string-parameter
i'm new to c++ and have a lack of understanding why this code works well:
string GetString(string promt)
{
cout << promt << ": ";
string temp;
getline(cin, temp);
return ...
9
votes
5answers
8k views
how to convert from int to char*?
The only way I know is:
#include <sstream>
#include <string.h>
using namespace std;
int main() {
int number=33;
stringstream strs;
strs << number;
string temp_str = ...
0
votes
2answers
214 views
How to use const char pointer returned from a function in this instance? (mongodb related)
I'm having a bit of trouble with a a function that the mongodb c driver uses. The function in question looks like this:
gridfile_get_field (gridfile *gfile, const char *name) (returns const char *)
...
1
vote
3answers
972 views
How can I join a char to a constant char*?
I have a function that joins two constant char* and returns the result. What I want to do though is join a char to a constant char* eg
char *command = "nest";
char *halloween = join("hallowee", ...
0
votes
6answers
131 views
Program hanging while running, compiles well
EDITED :
#include<iostream>
using namespace std;
#include<conio.h>
#include<string.h>
void dfsvisit(int a[][30], int i, const char *color[])
{
int v;
...
2
votes
6answers
2k views
Pass contents of stringstream to function taking char* as argument
I have a function for writing ppm files (a picture format) to disk. It takes the filename as a char* array. In my main function, I put together a filename using a stringstream and the << ...
2
votes
4answers
1k views
Is it appropriate to set a value to a “const char *” in the header file
I have seen people using 2 methods to declare and define char *
Medhod-1: The header file has the below
extern const char* COUNTRY_NAME_USA = "USA";
Medhod-2:
The header file ...
3
votes
7answers
740 views
How do I properly turn a const char* returned from a function into a const char** in C?
In short, I would like to do this:
const char **stringPtr = &getString();
However, I understand that you can't & on rvalues. So I'm stuck with this:
const char *string = getString();
const ...
0
votes
4answers
300 views
std::cin >> *aa results in a bus error
I have this a class called PPString:
PPString.h
#ifndef __CPP_PPString
#define __CPP_PPString
#include "PPObject.h"
class PPString : public PPObject {
char *stringValue[];
public:
char ...
2
votes
1answer
436 views
Python to C/C++ const char question
I am extending Python with some C++ code.
One of the functions I'm using has the following signature:
int PyArg_ParseTupleAndKeywords(PyObject *arg, PyObject *kwdict,
...
6
votes
3answers
2k views
printf question with a const char* variable
I am stuck in a printf problem. I would appreciate if I can get some help here:
In the below code, I can see the font family get displaced correctly in first printf(),
but if I set it to variable, i ...
6
votes
5answers
2k views
Are strtol, strtod unsafe?
It seems that strtol() and strtod() effectively allow (and force) you to cast away constness in a string:
#include <stdlib.h>
#include <stdio.h>
int main() {
const char *foo = "Hello, ...
1
vote
3answers
267 views
How come XDrawString doesn't take “const char *”?
looking at the declaration for XDrawString from X11, it is
int XDrawString(Display *display, Drawable d, GC gc,
int x, int y, char *string, int length);
How come the 6th argument is ...
104
votes
15answers
112k views
How to get rid of `deprecated conversion from string constant to ‘char*’` warnings in GCC?
So I'm working on an exceedingly large codebase, and recently upgraded to gcc 4.3, which now triggers this warning:
warning: deprecated conversion from string constant to ‘char*’
Obviously, the ...

