Tagged Questions
1
vote
4answers
85 views
meaning of the statement
I have many times come across the statement char* ch = "hello";.
I understand that char* ch tells that ch is a pointer towards a char. But what does assigning hello to ch mean ?
I cannot undestand ...
1
vote
6answers
615 views
converting char** to char* or char
I have a old program in which some library function is used and i dont have that library.
So I am writing that program using libraries of c++.
In that old code some function is there which is called ...
0
votes
6answers
139 views
How can I properly assign a char* in c++?
My c++ code looks like this:
char* x;
switch(i){
case 0:
x = '0';
case 1:
x = "1";
...}
I can't figure out how to make this work because for the ...
0
votes
5answers
121 views
Using a char* to store the correct file path
It has been a while since I messed with C/C++, and my memory of the available functions for working with a char* has gone out the window.
I currently use the following code to get the Current Working ...