Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

60
votes
15answers
77k 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 ...
6
votes
3answers
912 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 ...
5
votes
5answers
1k 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, ...
3
votes
7answers
397 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 ...
1
vote
3answers
159 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", ...
1
vote
4answers
370 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 ...
1
vote
1answer
254 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, ...
1
vote
3answers
178 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 ...
0
votes
6answers
97 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; ...
0
votes
6answers
937 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 << ...
0
votes
4answers
217 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 ...