The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
2answers
42 views

Doesn't %[] or %[^] specifier in scanf(),sscanf() or fscanf() store the input in null-terminated character array?

Here's what the Beez C guide (LINK) tells about the %[] format specifier: It allows you to specify a set of characters to be stored away (likely in an array of chars). Conversion stops when a ...
-1
votes
1answer
89 views

How to increment an array in x86 assembly?

How would you increment an array using x86 assembly within a for loop. If the loop (made using c++) looked like: for (int i = 0; i < limit; i++) A value from an array is put in a register then ...
0
votes
2answers
24 views

How to implement a loop to read the array of names that checks for number of upper case letters etc?

The program as is is telling me there are 0 upper case 0 lower case 0 spaces and 0 tabs but 61 other characters for an array with 2 names that are lowercase. The names have 10 letters combined. I ...
0
votes
1answer
40 views

How do I put get names from the scanf into an array?

I am trying to put the names from the scanf into an array and have no idea where it would go in the program. I need the array of names to create a bill for each card based on name size and upper or ...
2
votes
3answers
90 views

Making an Array to Hold Arrays of Character Arrays in C

My C is a little more than rusty at the moment, so I'm failing to create something I think should be pretty basic. Allow me to refer to character arrays as strings for this post. It will make things ...
0
votes
3answers
86 views

How to compare a string and a character array in android?

I have a string "sss" and a character array {'s','s','s'}. I converted the array to string but the message "both are equal" is not printed upon comparing them. Why? public class RoughActivity ...
0
votes
0answers
245 views

Alphabetically sorting an array piece by piece

I'm trying to sort an array of strings alphabetically that have the same frequency from the input file. I start by looping through the entire array, and set the indices at the points where the group ...
0
votes
3answers
62 views

Seg Fault char** C

I'm trying to figure out why I can't store a file into char**. I thought I allocated memory correctly. Can someone please help me? Thank you! Also, I know my way isn't the most efficient way to go ...
2
votes
1answer
75 views

How to set a Character array as text for TextView in Android?

userString=(EditText)findViewById(R.id.letter); checkButton=(Button)findViewById(R.id.go); text=(TextView)findViewById(R.id.display); checkButton.setOnClickListener(new ...
1
vote
4answers
346 views

Recursive Palindrome Test

I have a prototype restriction of bool pal(char str[], int length) and I need to test whether a string the user entered is a palindrome or not. The code I have is: bool pal(char str[], int length) { ...
1
vote
3answers
178 views

Recursive Function Loop Through Character Array

I have an assignment where I'm supposed to loop through a Character Array using a Recursive Function. I figured it would be easy since I would know the length of the array but then the prototype is ...
3
votes
3answers
122 views

using references to point to sliding window array in Perl

here is my problem: I have 2 arrays. One is character array and represents a sliding window. Characters gets shifted from the beginning and pushed at the end. I would like to use a second array to ...
0
votes
1answer
96 views

My findCombos method does not work, How to remove characters from java character array

I am making a method which will return a String[] containing valid combinations of words that differ by one letter. The method takes as String array containing a dictionary of words as the first ...
1
vote
2answers
108 views

File get contents in C

What is the best way to get the contents of a file into a single character array? I have read this question: Easiest way to get file's contents in C But from the comments, I've seen that the ...
0
votes
3answers
151 views

ArrayList vs char[]. which is most efficient for building into a large string

I am reading a data in byte-by-byte. when i have determined that i have an entire message, i need to pass it to another function as a string. Some messages can be quite large, but the sizes vary ...
1
vote
1answer
116 views

What does the output of a printed character array mean?

I'm moving from C to Java now and I was following some tutorials regarding Strings. At one point in the tutorials they showed instantiating a new string from a character array then printing the ...
2
votes
6answers
184 views

using C Pointer with char array

int i=512; char *c = (char *)&i; c[0] =1; printf("%d",i); this displays "513", it adds 1 to i. int i=512; char *c = (char *)&i; c[1] =1; printf("%d",i); whereas this displays 256. Divides ...
0
votes
2answers
140 views

How can I modifiy my c++ program to show a word inputted by a user, backwards using a stack?

I want to assign a pointer to every character the user inputs. Then in doing so, I probably can use a loop to store the characters and a second loop rearrange the stack order using the pointers. But I ...
1
vote
4answers
215 views

Char array allocation

In C++, if I do: char myArray[] = {'1','2','3','4','5','6','7','8','9'}; Does that allocate 10 spaces? The last element being '/0'? What about: char myArray[9] = ...
2
votes
2answers
766 views

C++ convert strings to char arrays

I want to have 2 strings as input so I can use getline(cin,s) (so I can pick the whole line until '\n') and then I want to search the second array if it contains the word of the first array without ...
0
votes
3answers
247 views

Char Array contains null characters before the end

I've got a class project to make a webserver in c++. Everything's been going OK until I got to the point where I needed to host images or pdfs, at which point the files were corrupted. Doing some more ...
1
vote
1answer
377 views

Copying the content of a character array to a QString in Qt

I have a character pointer that in any run can have different length. For example: char* myChar; In one run its content can be "Hi" and in another run it can be "Bye". I want to copy the content ...
2
votes
1answer
119 views

Easiest Way to Transform a Wide String or Wide Character Array to a Simple Character Array?

My variable is in a specific internal implementation of a wide string but I can get it to be a wide character array quite easily. The problem is I need to feed it to a library function that will only ...
1
vote
1answer
109 views

Returning Character Array via Assignment Operator

So this is a homework assignment, there might be come constraints that are ridiculous but please bear with me. This is just a simple function but drawn out. I need to return a character array via ...
5
votes
5answers
1k views

Program skips cin.getline()

I have made this program, It get the users adress, name and work. Then It puts it all into one string and outputs that string. (I know there are better ways to do this) char str[600]; char adrs[200]; ...
3
votes
4answers
189 views

C++: Does strcat() overwrite or move the null?

Now lets see this small program char s[20]="One"; strcat(s,"Two"); cout<<s<<endl; Here at first s has the value "One" and for visual representation this is the value of s: O - n - e - ...
0
votes
4answers
158 views

Confused: Pointers and character arrays in C

I'm new to C and trying to split a character array (which I receive from a Serial Port in Ardunio). I looked up some tutorials and came up with this. Help me debug it please. char action[10]; ...
1
vote
2answers
590 views

const char* and free()

Given the next code example, I'm unable to free the parameter const char* expression: // removes whitespace from a characterarray char* removewhitespace(const char* expression, int length) { int ...
0
votes
1answer
80 views

Is it possible to have a dynamically populating Array of char* in C++

I have a situation like this. declare array of char*; switch(id) { case 1: add 4 words in array case 2: add 2 words in array default: add 1 word in array } use array here; Is it ...
0
votes
2answers
984 views

C++ convert character array to uppercase ( no MFC )

I am trying to get my application to convert a character array to uppercase letter so I can pass them as key presses. I know I am close to getting this code working but I just cant see the problem. ...
-2
votes
2answers
301 views

C++ Stack Program Wsing array of Pointer Issue new char[len] where len is 2 creates a char of 16?

Ok so i am writing a program for class and I am not very familure with the ways of c++. I have looked into char arrays and can not figure out the issue. It seems like when allocating the space the ...
0
votes
1answer
402 views

using arrays in a simple encryption by assigning (new) values to each letter

So more or less I'm attempting to write a simple encryption/decryption program in C++. Right now i have most of the other basic functions wrote. Although, I'm unsure how to integrate arrays into ...
0
votes
1answer
257 views

Simple but effective bracket checker for inputs like this?

{(1,2),(3,4)}; How can I check that an input like the above is a set (between '{' and '}') of two pairs (integer values between '(' and ')'. Three commas, as above, must be used. My guess is that ...
0
votes
3answers
618 views

How to pass a scanf string to a global character array through pass-by-address in C++?

Let me make this clear right away, this is for a college class. I cannot use C++ libraries, only standard C libraries. Do not suggest that I use C++ strings or cin/cout because that will not help me ...
5
votes
4answers
192 views

Why is a char* being treated the same as a char** in C?

I have the following test application: #include <stdlib.h> #include <string.h> #include <stdio.h> int main(void){ char buf[512]; buf[0]= 0x1; buf[1]= 0x2; char ...
0
votes
10answers
118 views

(To me) unexplainable value in character array

I'm stuck with something I really don't understand and I hope someone over here does. Can anybody explain me why 'nextOne' holds the value 51? It's clear that at index 2 in the expression array is ...
0
votes
1answer
81 views

How can I place numbers at the end of an int (not summing)?

I'm busy with making an expression tree for school, I've already build the part in which the tree is being made and printing the result of the arithmetic expression also works. There is this extra ...
0
votes
1answer
243 views

Fortan 77 Variable Size Array of strings?

I am a dummy in Fortran 77 and have always been a C++ coder, but I have to modify a code from years long ago... I want to create a variable size array of strings and I cannot find online how to do ...
1
vote
3answers
197 views

Array and string

I have an array of type char and a string that I will be introducing from the keyboard. Can anyone tell me how can I introduce each character of the string in the char array?
0
votes
5answers
1k views

How do I return a variable size string from a function?

I need a working code for a function that will return a random string with a random length. What I want to do would be better described by the following code. char *getRandomString() { char ...
1
vote
3answers
249 views

Passing 2-D array with dynamic size between functions in C/++

This is "popular" question so I already checked the similar threads but still didnt resolve my issue. How can I declare 2-D array to hold "strings" - I need array of array of chars AFAIK - and use it ...
1
vote
2answers
771 views

atoi on a character array with lots of integers

I have a code in which the character array is populated by integers (converted to char arrays), and read by another function which reconverts it back to integers. I have used the following function to ...
2
votes
3answers
678 views

Only first character of string is will print in C

I have this struct typedef struct grade { char firstName[SIZE]; char lastName[SIZE]; int stuNum; }GRADE; and this output code: void printData(GRADE grade[], int used) { int i; ...
3
votes
8answers
334 views

Initializing C char array using curly braces, is it okay to omit null byte '\0'?

So I read that: char pattern[] = "ould"; is basically the easier way of writing: char pattern[] = { 'o', 'u', 'l', 'd', '\0' }; I understand that the null character \0 marks the end of a string, ...
1
vote
2answers
177 views

Character array and pointer

The code snippet is given as: char *s[] = {"program", "test", "load", "frame", "stack", NULL}; char **p = s + 2; We need to find the output of following statement: printf("%s", p[-2] + 3); What ...
9
votes
2answers
11k views

PHP - iterate on string characters

Is there a nice way to iterate on the characters of a string? I'd like to be able to do foreach, array_map, array_walk, array_filter etc. on the characters of a string. Type casting/juggling didnt ...
18
votes
2answers
18k views

How do you get a string to a character array in JavaScript?

How do you get a string to a character array in JavaScript? I'm thinking getting a string like "Hello world!" to the array ['H','e','l','l','o',' ','w','o','r','l','d']
0
votes
4answers
475 views

How to remove a character from a string using baskspace in C?

can you give me an example of deleting characters from an array of characters in c? I tried too much, but i didn't reach to what i want That is what i did: int i; if(c<max && ...
0
votes
3answers
231 views

string manipulating in C?

I want to print an array of characters, these characters are underscores first. Then the user can write characters on these underscores.I used gotoxy() but it doesn't work properly. That is what i ...
0
votes
6answers
269 views

Create files from file names in another file C++

I am working on sorting several large files in C++. I have a text file containing the names of all the input files, one on each line. I would like to read the file names in one at a time, store them ...

1 2