The tag has no wiki summary.

learn more… | top users | synonyms (1)

0
votes
0answers
12 views

snprintf issue when pass a macro

define a macro somewhere #define IDENTIFIER "identifier" passing this macro into snprint() char buf[SIZE] = {0}; if (snprintf(buf, sizeof(buf), "%08X_%08X_%s.zip", i, j, IDENTIFIER) ...
0
votes
3answers
57 views

Error on finding the size of a char array in Java

I'm just starting Java, and I don't understand why this code: char WORDS[][] = {"jazz", "buzz", "hajj", "fuzz", "jinx", "jazzy", "fuzzy", "faffs", "fizzy", "jiffs", "jazzed", "buzzed", "jazzes", ...
0
votes
1answer
47 views

dynamic 2d char array allocation not working correctly

I am trying to make a 2d char array of dynamic size. Whenever I allocate the memory, the inner array always ends up being the same size as the outer array. char **memory; int outer = 1000; int inner ...
0
votes
3answers
125 views

How to convert an int to ASCII char C++

I have to convert an int to an ASCII string. Basically, i want this : int iTest = 128; char ca[3]; ??? --> **SOLUTION :** sprintf(ca,"%d",iTest); and the result : ca[0] = 0x31;--> ...
1
vote
3answers
51 views

why are there different between char* and char[] in case of multiple definition?

-define strInterface in interface.h // interface.h #ifndef INTERFACE_H_ #define INTERFACE_H_ const char* strInterface = "the difference between char* and char array"; #endif -in the OneUsing class, ...
1
vote
3answers
89 views

How to test the backing array used in Java Sting?

While i was developing my Android application, my attention was caught by the backing array. Multiple strings can share the same char[] because strings are immutable. The substring(int) method ...
-5
votes
1answer
69 views

Multiple Char Array Arguments Of A Function C++ [closed]

![enter image description here][1]I'm on a project and I'm stuck on a problem! I'm declaring a function as: void read_file(fstream& , char [][50], char[], const int); and here is complete ...
2
votes
1answer
154 views

Creating a const char* const* array

I wish to call a 3rd party library function, which accepts a const char* const* as argument type:- class Arguments { public: Arguments(int argc, const char* const* p_argv = 0); private: ...
0
votes
1answer
39 views

Char array to integer

I have 2 questions. Here in the C++ reference #include <stdio.h> int main () { char sentence []="Rudolph is 12 years old"; char str [20]; int i; sscanf (sentence,"%s %*s ...
0
votes
3answers
141 views

String contains any char array

My problem is that i want to check if a string contains one or more of three character arrays i set up, and for the most part i got it to work but for some weird reason one line doesn't want to work ...
0
votes
3answers
44 views

Android: Fill array up to a certain length

The situation I have got different char[] arrays with a different amount of items. To avoid the "OutOfBounds"-Error while processing them I want to standardize them. For Example: My Array has ...
0
votes
1answer
9 views

System V MQ Text Length Issue

I'm trying to write simple chat app with system v mqs but I am having a problem with my mtext value in the struct. struct join_buf { long mtype; char mtext[8]; }; when I sent a message with ...
0
votes
0answers
213 views

2d character array to string (java)

I need help converting a 2D character Array to a String. I figured out how to convert a 1d character array to a string, but I'm unsure how to go about changing it to display a 2d char array. public ...
0
votes
3answers
160 views

Counting carriage return, Java

I am trying to count carriage return occurrences within string input. I tried both Scanner and BufferedReader. With Scanner, nextLine() does not pick up Carriage Returns. next() with Scanner looks for ...
0
votes
1answer
28 views

how to use qstring as char array

I am trying to write a function which finds out is this word georgian or not. I wrote it for latin characters and it worked. now i am trying to change it to read a QString char by char and compare to ...
0
votes
0answers
23 views

how to declare char arrays using constants

im new at programming on C, im trying to use constants on char declarations and i cant get it to work =(. Its an Ansi C assigment file.h: #ifndef __New_Type_h__ #define __New_Type_h__ ...
-3
votes
1answer
53 views

Construct a string from a portion of a char array in C++

I've a very big wchar_t array. I'd like to construct a wstring from a portion of this wchar_t array, for example between i and j. I don't want to turn the big char array into a wstring, and then to ...
0
votes
2answers
57 views

What is the cause of pointer alighnment issue?

My program reads words from a file, and stores them in a dynamically allocated array as a number of words. My problem is while in the while loop when I print the array, it seems to pointing to the ...
0
votes
1answer
58 views

Why can I not assign characters to my character array after it has been initialized with a string literal?

Here is the code, when I run this code using CodeBlocks10.05 compiling with GNU GCC with no flags, I do not get the results which I hoped for. I was hoping that all the characters in the array would ...
0
votes
2answers
140 views

Trimming a char array in C

I am working on an assignment and I have been noticing a problem in my coding assignment. It is not clear to me how to tackle this problem, probably due to a lack of sleep but anyway. I need to trim a ...
0
votes
1answer
75 views

Subtracting a piece of information from a char array in C

I am currently working on a piece of code and I am not sure how to tackle this problem. Ill explain the situation: The goal of this code is to make a "dynamic" matrix in C. Using "fgets" I get a char ...
0
votes
3answers
138 views

get string size in bytes in c

As the title imply, can you tell me how to get the size of a string (null terminated) kept in a char array in c? It's good to use sizeof if I declared it (the string) in a function without malloc ...
0
votes
2answers
93 views

splicing cstrings with strtok, only works on first execution of loop

I am trying to use strtok to splice a line read into a cstring into individual strings. Yes I know this could be done much more easily with string objects, but I'm not allowed to use them. When this ...
1
vote
2answers
183 views

How to dynamically allocate memory for char** in C

How would I go about dynamically allocating memory to char** list in this function? Basically the idea of this program is I have to read in a list of words from a file. I cannot assume max strings or ...
0
votes
1answer
89 views

Elements of Char Array are right aligned when printed

I need to print out the letters already used in Hangman i.e. elements in char array but they are appearing one by one from the right rather then from the left. E.g the first letter appears in the ...
0
votes
1answer
172 views

Count Duplicate letters

I want to get a string count any letter in the string how many time it's appeared in the string,and print the letter and the number So that what i did: import java.util.Scanner; public class test1 { ...
0
votes
1answer
376 views

How to convert the incoming characters coming from gsm module into a string?

Its my first time to use gsm shield to my arduino so I'm kinda confused so i need directions. My aim is to read the message sent to my gsm shield then compare that message into a specific string. if ...
1
vote
3answers
121 views

Initializing char arrays and MISRA errors

I have the following line (reduced to minimally demonstrate issue): char version_text[64U] = {'\0'}; This line generates the following MISRA error: Error[Pm023]: missing elements - braces shall be ...
0
votes
3answers
69 views

ArrayIndexOutOfBounds while testing a char for if it is an int

Alright, guys, I'm trying to get a basic hang on Java and I figured I would make something a bit more complicated than usual. What I have in this method is an attempt to first check if the first ...
0
votes
2answers
158 views

Assigning chars to a char array with +=

Currently I'm writing a rather extensive homework assignment that - among other things - reads a file, builds a binary search tree and outputs it. Somewhere inside all that I've written a recursive ...
1
vote
3answers
151 views

Printing partial char arrays…with a twist

So I know there are a lot of questions about printing only segments of char arrays in C and I have read them and though my question is similar in nature, there is a small twist to mine. Given my code ...
3
votes
4answers
173 views

About string length, terminating NUL, etc

I'm currently learning C and I'm confused with differences between char array and string, as well as how they work. Question 1: Why is there a difference in the outcomes of source code 1 and source ...
0
votes
1answer
47 views

How do you compare a number with the index of first value in a DOUBLE scripted array?

For example, if I had a char array that was like this: [a b d c] The index of 'c' in this array would be (0,1). How do you compare that 0 with an integer?
0
votes
2answers
258 views

how to remove first 4 characters from a char array

My current code is: char* message = new char[256]; cin.getline(message, 256); if(message[0] == 's' && message[1] == 'a' && message[2] == 'y' && message[3] == ' ') { ...
1
vote
2answers
196 views

using char array to store data

I need to create a program when it run it should extract a image file. to do this I I used a char array to store the data. ex: char data[]="ÿØÿà......"; I opened the image with a hex editor and ...
3
votes
1answer
49 views

how to append a zero character at the end of wide char array to make this strange PCZZWSTR winapi data type?

I need this to move a file to recycle bin by using SHFileOperation function and SHFILEOPSTRUCT structure. Is this way safe ? ( I'm starting from wide char string object.) wstring wstr = L"my test" ...
0
votes
2answers
202 views

Simple C++ char array encryption function - Segment fault

As always, problems with the pointers. I am trying to create a very simple "encryption/decryption" function for char arrays. Yes, I know I can use strings, but I want to improve my knowledge about ...
0
votes
3answers
126 views

Issues with permutation function and swapping string values

Okay, so I need some help getting my string to swap around. Here is the overall code of what I am trying to do, but I can't just move the string around. I started off trying to convert it to ...
0
votes
1answer
80 views

Send to class char array defined in header

The issue that I am having is that I am trying to build a DLL. And I am using char instead of strings to store information. I have defined the following in the header file: class Test{ public: ...
-3
votes
1answer
98 views

Value added to malloc array becomes all values in malloc array

I have written this function (below). It should read in a file line by line. Edit the line and put certain words/characters in various functions. The functions are then put into an array (malloc) of ...
1
vote
4answers
105 views

How to have child processes change the parent's variables?

I declared an array: char * words[1000] = {NULL}; And now I have a series of forked child processes adding words to that array, but they are not affecting the parent program. How can I change that?
-1
votes
3answers
137 views

convert static character array to dynamic [closed]

Given a static array how to change it into dynamic allocation with arr as a pointer unsigned: char arr[] = {1,4,5,8,9,6,4,3,2,1,5,7}; unsigned char *arr = NULL; Now how to assign this value to ...
6
votes
3answers
179 views

Does delete[] deallocate the entire block of memory?

Consider the following: char* msg = new char[20]; msg[4] = '\0'; delete[] msg; Did the delete[] msg deallocate all the 20 chars allocated for msg or just those up to the \0? If it deallocated ...
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 ...
0
votes
3answers
124 views

How to check if a pointer to a char array points at a digit character?

I have a pointer to a char array. I want to increase it until it will not point at a digit / number (represented as a char in the char array). For example, if pointer points to '2' in this char ...
0
votes
3answers
162 views

Inserting characters into the middle of an array

I've got a char array called encoded which has a series of char values. I want to insert 3 chars into the middle of the array and keep the remaining chars by pushing them to the next spaces. Is this ...
1
vote
3answers
136 views

c++ passing a value to a char array through arguments

class Link{ char name[]; Link *next; }; Link::Link(char pname[]){ next=NULL; name[]=pname; }; How can I assign value I am passing (pname) when creating object to ...
7
votes
4answers
703 views

Why does gcc allow char array initialization with string literal larger than array?

int main() { char a[7] = "Network"; return 0; } A string literal in C is terminated internally with a nul character. So, the above code should give a compilation error since the actual ...
0
votes
2answers
43 views

Not handling user input correctly

So, this program I am working on is not handling incorrect user input the way I want it to. The user should only be able to enter a 3-digit number for use later in a HotelRoom object constructor. ...
0
votes
2answers
50 views

Segfault while finding the index of a char* in a char**

I have this function that takes a char** and a char* as parameters and it's supposed to return either the index of the char* in char** or return -1 if it's not in the string array. The error I'm sure ...

1 2 3 4