The c-string tag has no wiki summary.
-2
votes
2answers
49 views
How to parse the end of char array? [closed]
So let's say I have a line that looks like this:
"abcdefghi"
If I want "hi", and there is nothing that comes after it, how can I parse?
I tried strtok(str, "'\0'") but I can't seem to get that to ...
-5
votes
1answer
57 views
How to print the number into the middle of string with specific format? [closed]
I have something like this:
count++;
sprintf(buf, "%d", count);
char * wyn1 = " <span font='26'><b>buf</b></span>";
gtk_label_set_markup( GTK_LABEL( wynik1 ), wyn1 );
...
3
votes
2answers
81 views
c++ template C-string parameter
I was working on a template for a function. To simplify, say it looks like this:
template < typename T >
void f(const T & x)
{
cout << "generic case" << endl;
cout ...
0
votes
2answers
124 views
C - memory allocation issue - need explanation
Recently, I have encountered a problem with C pointers.
As you might see, I've got a loop that reads data from STDIN. The problem is I don't quite understand what I've done.
I allocated memory for ...
0
votes
1answer
107 views
extracting exponent from polynomial c++ using c string
I'm trying to extract the value of the coeffecients and the exponent from a polynomial. I have already succeeded in extracting the coeffients using strtok. I applied the same concept to find the ...
2
votes
3answers
123 views
C - resizing an array of pointers
I more or less have an idea, but I'm not sure if I've even got the right idea and I was hoping maybe I was just missing something obvious. Basically, I have and array of strings (C strings, so ...
1
vote
4answers
85 views
char[] and char* compatibility?
In essence, will this code work? And before you say "Run it and see!", I just realized my cygwin didn't come with gcc and it's currently 40 minutes away from completing reinstallation. That being ...
3
votes
3answers
126 views
Pointers/C-Strings in C++. How to filter the strings?
I have an array to filter.
Example:
str = "hellothere" and filter = "eo". What to do when i need to filter?
void filter_str(char* str, char* filter, char*result)
{
while(*str)
{
if() ...
-1
votes
4answers
352 views
difference between char c[100] and char *c both with cin.getline()
I have some questions on cin.getline(char *s, int num_char, char delim);
what is the difference between:
char c[100];
cin.getline(c,100,'\n');
and
char *c = new char[100]; //this is the ...
1
vote
5answers
340 views
Difference between char *str = “…” and char str[N] = “…”? [duplicate]
Possible Duplicate:
What is the difference between char s[] and char *s in C?
Question about pointers and strings in C
I'm reading about the strings in C and I'm confused. I can "declare" ...
1
vote
3answers
224 views
C++: Will Not Accept New C-String Input
First off, thanks in advance for your help. This issue is driving me nuts.
I have a program that accepts a c-string, and then can count the number of vowels and consonants. This works without issue. ...
4
votes
6answers
277 views
Basic c-style string memory allocation
I am working on a project with existing code which uses mainly C++ but with c-style strings. Take the following:
#include <iostream>
int main(int argc, char *argv[])
{
char* myString = ...
8
votes
2answers
3k views
Is it possible to print out only a certain section of a C-string, without making a separate substring?
Say I have the following:
char* string = "Hello, how are you?";
Is it possible to print out only the last 5 bytes of this string? What about the first 5 bytes only? Is there some variation of ...
0
votes
3answers
698 views
Compound/Complex C-String in Xcode/Cocoa
I am creating an SQLite3 program. I am creating the database within the code. I have about 15 columns. Example below:
NSString *createSQL = "CREATE TABLE IF NOT EXISTS FIELDS (DATE TEXT PRIMARY ...
0
votes
1answer
49 views
Compilation Errors on .at(i) but not on [i]
Why is it that:
char SourceChar = Text.c_str()[Index];
compiles, but
char SourceChar = Text.c_str().at(Index);
does not? Is there a workaround to this?
3
votes
3answers
318 views
How to convert the time to a c string in c?
I wanna to write something to a .txt file in .c file, but required to name that file with the current timestamp as the postfix, just like filename_2010_08_19_20_30. So I have to define the filename ...
