Char typically refers to a character data-type, representing letters of text.
1
vote
2answers
60 views
Why can't I use a .ToString() method on a char array in C#?
I am working through an exercise where I am supposed to ask the user for a string, then reverse the string and print it out to the console. I wrote this:
Console.WriteLine("Please enter a ...
-1
votes
2answers
82 views
What's the difference between char[] and char[10] in C++?
Is there any difference between char[] and char[10] (or any other arbitrary constant)?
for example:
char[] = "here";
char[10] = "there";
When I ran such a program:
struct TreeNode
{
struct ...
0
votes
1answer
28 views
Java - Output Type (String, int, char, double)
Probably a very simple question for you guys but one that has been bugging me for the longest time. In my programming class when we are submitting the output of out code we are supposed to have ...
0
votes
1answer
85 views
Haskell - implement a function for a given signature
I have to implement an example function with following signature:
[[([Char], a, b)]] -> (a -> b -> Char) -> ([Char], b -> a -> Char)
So I attempt this way:
funcD ...
0
votes
2answers
105 views
char* and char arr[] Difference - C++/C [duplicate]
Just starting out in C++, I was wondering if someone could explain something.
I believe you can initialise a char array in the following way
char arr[] = "Hello"
This will create a Char array ...
3
votes
1answer
79 views
sizeof character and strlen string mismatch
As per my code, I assume each greek character is stored in 2bytes.
sizeof returns the size of each character as 4 (i.e the sizeof int)
How does strlen return 16 ? [Making me think each character ...
0
votes
4answers
71 views
how to write the character value from structure into the serial interface and convert into integer value?
struct MemoryTag1;
typedef struct MemoryTag1{
char a[8]= {'+','0','2','6','.','5','EA','\r'}; // setpoint temperature value
char b[8]= {'-','0','2','4','.','5','EB','\r'};
char c[6]= ...
-1
votes
2answers
56 views
How to change a variable every iteration of a loop (Java)
How can I have my variables change after every loop. I need the stated arraylist variables to go where the code is marked "HERE".
//variables i need to cycle through
static ArrayList<Integer> ...
0
votes
4answers
85 views
why segmentation fault?
Im style having problems in my GTK program ...and this is 1 of em .
i can't determine the exact mistake i made here so that when i click encode(or decode) button i get error message:segmentation ...
-1
votes
1answer
69 views
how to handle data types here?
im really facing a problem in data types conversions here ..i'm making a GUI version of a program with GTK...so to get entry_text string i need a const char* which obliged me to use this data type in ...
-1
votes
2answers
33 views
php arguments international characters and if statements
I think I'm missing something simple with input arguments and them having characters with accent marks. I have a php file that can take arguments example.com/myphpfile.php?ar1=somestring and I cycle ...
-2
votes
3answers
62 views
Concatenating a char into a string
I am trying to read a string from the console. But I want to read it char by char. And I'm having trouble with concatenating the char into the string AND with breaking the loop.
Here is the code:
...
-1
votes
1answer
58 views
c char pointer assignment
I'm having problems with assigning a value to char pointers.
#include<stdio.h>
int main(int argc, char* argv[]){
char line[200], *p, q;
int i=0;
FILE* f=fopen(argv[1], "r");
...
2
votes
3answers
71 views
sign extension in C, char>unsigned char
When i was reading K&R, i am confused in this code:
#include "syscalls.h"
int getchar(void)
{
char c;
return (read(0, &c, 1) == 1) ? (unsigned char)c : EOF;
}
It is said unsigned ...
1
vote
6answers
96 views
how to copy char array to another char array in C?
In C, I have two char arrays:
char array1[18] = "abcdefg";
char array2[18];
How to copy the value of array1 to array2 ? Can I just do this: array2 = array1?
-1
votes
3answers
73 views
How does this loop end?
code example like this:
#include<stdio.h>
void main()
{
char *s={"abcd"};
do {
printf("%d\n",++s);
} while(*s);
}
Where does the pointer s point when the loop do ...
1
vote
2answers
51 views
Converting a lowercase char in a char array to an uppercase char (java)
Hello I am trying to write a little segment of code that checks if each char in a char array is lower case or uppercase. Right now it uses the char's ASCII number to check. After it checks it should ...
3
votes
2answers
57 views
Wrong printing in C function
I'm writing a small function in C that receives a char* and prints it by "slow motion", meaning each char after a certain time, thus making it look like a typing animation.
My code is:
void ...
0
votes
4answers
49 views
C converting value char to string char
How to cast char=2 to char="2" ?
i need it to send via uart, but when im trying to send char as 2 i get nothing, but when i send as "2" i get 2
The point is, i have
int s=2;
and i need to write ...
0
votes
4answers
74 views
what is the correct string terminator in c
As I know the string terminating character in c is '\0'.
can we use '0' as the terminating character too? when I assign 0 to a specific index in a char array, and then use printf, it prints only upto ...
0
votes
1answer
38 views
File read and output bug
I am using the bellow struct 'Menu' to store menu data; after i am able to read properly from a file i will use for loops to load all of my menu data for each menu. variable is a vector of char* used ...
0
votes
5answers
131 views
Implicit conversion from type Char[] to string is not possible
I want to do the following but I get this
Error: an Implicit conversion from type Char[] to string is not
possible.
string Pattern2 = (Convert.ToDateTime(currMail.CreationTime).ToString(" ...
0
votes
5answers
85 views
I need a way to edit a string
Given a string like "/documents/filename.txt", I need to produce a new string "/documents/filename_out.txt", where the new string simply appends _out to the filename, while preserving the .txt suffix.
...
0
votes
2answers
72 views
Assignment of char value causing a Bus error
The function is to reverse a C string:
void reverse(char[] str){
char *start = str;
char *end = str;
char tmp;
if (str) {
while (*end) {
end++;
}
end--;
while (&str ...
-4
votes
4answers
47 views
Why does “union test{ short a,b; char c1,c2,c3,c4;};” store c1,c2,c3,c4 in same byte,two being available?
In my program below I can understand why the short members of the union are stored in the same 2 bytes (as size of the union is that of the largest member).But I just don't get it why all 4 character ...
0
votes
2answers
30 views
Converting a char to an int for int arithmetic in java
i have a bit of strange confusion happening when trying to convert my char variables from my char array into ints.
Here is my code:
public class Luhn {
private String cardNumber;
private char[] ...
0
votes
1answer
30 views
Objective-C Raw MD5-hash
In Objective-C, I generate a simple MD5-hash of 'HelloKey', which returns 0FD16658AEE3C52060A39F4EDFB11437. Unfortunately, I could not get a raw return, so I have to work with this string to get a raw ...
-2
votes
1answer
51 views
about sizeof(char *) and sizeof(char[]) [duplicate]
char *str1 = "pupupupu";
char str2[] = "pupupupu";
printf("%s\t%d\n", str1, (int)sizeof(str1));
printf("%s\t%d\n", str2, (int)sizeof(str2));
Output:
pupupupu 8
pupupupu 9
My question: Why ...
0
votes
2answers
72 views
Dynamically allocate an array of unspecified size in C
I want to take an input in c and don't know the array size.
please suggest me the ways how to do this..
hello this is
a sample
string to test.
0
votes
1answer
33 views
C++ Reading everything after specific line in char
I have a char like this
char buff[1024]
Then i have alot of stuff in that buff. But i want everything after these \r\n\r\n
So if the char looks like this
...
1
vote
1answer
16 views
2d Char array display in grid
I am having difficulties initializing 2d char arrays. When it does work, it gives me a hexa output. I am looking for something along the lines of grid.
#include <iostream>
using namespace ...
0
votes
1answer
53 views
Replace all spaces in a string with '%20'. Assume that the string has sufficient space at the end of the string to hold the additional characters [closed]
The question is as the titles, and I have write a code to implement this function. The code is as below, but the sentence: *(str+length_copy-1+tail_space_num) = *(str+length_copy-1); cause an error.
...
2
votes
3answers
43 views
Storing char array column into string for comparison
I have a char array[4][4] of single characters ie. 'a' and I'm trying to store just the columns of the array into a string for comparison to another string. But the issue I have is it keeps adding the ...
0
votes
3answers
54 views
Strict comparaison between char and int
I would like to know if it was possible to compare an integer and a char.
Something that could be the "===" from Javascript.
Because
'a' == 97
Will ouput
1
Edit : I would like something like
...
0
votes
0answers
41 views
how to replace a group of character in a string
I have a string variable "full". also I have a string array which has 40 cells. Each cell has a group of character like "x1" or "x1'". I want to search all of this cells in the "full" string and when ...
0
votes
3answers
76 views
C language: find out if string s2 exists in s1
Is there any C function to check if string s2 exists in s1?
s1: "CN1 CN2 CN3"
s2: "CN2" or "CG2"
s1 is fixed, and I want to check whether variants of s2 exists in s1 or not.
I am using C not ...
1
vote
2answers
44 views
Read from a file and tokenise input C
I'm having trouble with a piece of coding I'm working on. It involves linked lists and certain annoying pointers. Here is some sample code:
PersonType *person;
FILE *c;
c = fopen("file.csv", "r");
...
0
votes
3answers
76 views
How to map 2 char* arrays directly into std::map<std::string,std::string>
I have 2 char arrays like "const char *arr1[ArrSize] = {"Blah1", "Wibble1", "Shrug1"};".
For putting them into a vector I found a nice quick solution:
void fillVecTest()
{
const int ArrSize = 3;
...
1
vote
1answer
58 views
C — Filling char * using a loop and index — NOT WORKING
This chunk of code is part of a function to convert a decimal number into binary, placing it in a specific index of char instBin[33] that was created and passed by reference by the calling function. ...
-1
votes
4answers
47 views
Structure char array usage
I have a problem understanding how this works out :
struct main_s {
char test[1];
};
Is it a 2 dimensional array test[1][x] ?
For example how to pass a string "Hello World" to the field of the ...
0
votes
3answers
53 views
Modifying pointer value
I am having some trouble with some work I was assigned for my schooling. I was told to write a program that modifies a char. I can do that just fine. I just cannot get how to work with pointers. I've ...
-2
votes
4answers
33 views
Char Method javascript
Having issues... Can anyone tell me what I did wrong on this JavaScript code:
function getname() {
var the_name = window.prompt("Enter your first name", "");
var first_char = ...
-2
votes
0answers
26 views
write special character like → with php and store it in Mysql database [closed]
Hello I have a special character that needs to be displayed and sttoquer in the database as this kind of character → quat kje but the stock in its base that it has converte the & # 8594, and I ...
-3
votes
2answers
46 views
Meaning of the percent (%) character in javascript [duplicate]
What is the meaning of the percent (%) character in javascript. When and for what we can use this character?
0
votes
2answers
46 views
Input C-style string and get the length
The string input format is like this
str1 str2
I DONT know the no. of characters to be inputted beforehand so need to store 2 strings and get their length.
Using the C-style strings ,tried to made ...
2
votes
1answer
49 views
Sort a string in C with quick sort
I want to sort a string in C according to the ASCII value of each char in the string. I write a quick sort to do this. My code is as following:
#include<stdio.h>
#include<stdlib.h>
void ...
5
votes
1answer
104 views
Difference between char and signed char in c++?
Consider the following code :
#include <iostream>
#include <type_traits>
int main(int argc, char* argv[])
{
std::cout<<"std::is_same<int, int>::value = ...
-2
votes
2answers
48 views
Comparing elements in two string arrays
I am attempting to compare elements in two different string array. Why can't I just use simple > or < comparisons? I am also trying to use convert a string a to a char like so
chara = ...
-5
votes
3answers
63 views
Cannot Break Out of a “While” loop
I am converting a 2-d char array into a 2-d int array, and I need to break out of the while loop if \0 or \n comes in the string. This code gives segmentation fault.
Definition of Array is and the ...
4
votes
3answers
60 views
C++: incrementing char pointers
why does the following program:
char *s, *p, c;
s = "abc";
printf(" Element 1 pointed to by S is '%c'\n", *s);
printf(" Element 2 pointed to by S is '%c'\n", *s+1);
printf(" Element 3 pointed to by ...




