0
votes
2answers
103 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 ...
-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
1answer
49 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
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 ...
4
votes
3answers
59 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 ...
0
votes
2answers
61 views

Change C signature to accept instead of array of ints, an array of chars

I first must admit that I am not a C expert, and I always get mixed up when having to do such conversions. I have the next function which takes in the first 2 parameters, 2 pointers to arrays of ...
1
vote
3answers
48 views

Char Doubly-linked list

I've created a structure and function for a doubly linked list. It works flawlessly for integers but now I have to convert it to use characters. I've always had a problem when it comes to characters, ...
0
votes
1answer
59 views

Given char *p = “string”, why does modification result in undefined behavior? [duplicate]

char *p = "string literal"; p[0] = 'S'; char a[] = "string literal"; a[0] = 'S'; What is the main difference between these two? What really happens in the memory when these two are defined? Why ...
-5
votes
0answers
47 views

Why is this the output of the program [closed]

Why is the output of this code coming out to be [l] and [i]? #include<stdio.h> int main(void) { char *ptr = "Linux"; printf("\n [%c] \n",*ptr++); printf("\n [%c] \n",*ptr); ...
1
vote
4answers
78 views

C++, weird behavior about copying char arrays by using pointers

I got this code from a textbook: #include <iostream> using namespace std; int main(){ char str1[]="hello,world!", str2[20], *p1, *p2; p1=str1; p2=str2; /* ...
0
votes
1answer
58 views

C Language: char array issues and warnings by eclipse

I just returned to develop in C over eclipse and im having big issues im not sure how to solve, dont remember i used to have such when developing before. anyway i'll point u to 2 issues (i made my ...
0
votes
2answers
37 views

Putting information from a char array into a Dynamically created array

I'm trying to pass information from a char string that's been tokenized using " ." as the set. Turn those characters into integers using atoi() Then send the values into dynamically allocated ...
-3
votes
1answer
57 views

Which is more efficient: char str[] or char *str? [closed]

For the sake of efficiency, is there ever a reason to use one of these over the other? char str1[] = "Hello" char *str2 = "World"
0
votes
5answers
88 views

Returning char pointer from C function

I need help to check if my code is correct. The code is too big to include entirely, so I will paste only the affected parts. char *tmp; tmp=Decode_URL(tmp_data); sprintf(Data,"%s",tmp); ...
0
votes
3answers
38 views

Inputting into a char* declared earlier crashes the program while doing that into a 'just-declared' char* doesn't. Why?

This code crashes the program #include <cstdio> int main() { char *name1; char *name2 = "Mark"; gets(name1); puts(name1); return 0; } whereas this doesn't #include ...
-1
votes
2answers
39 views

Char pointer weird expression in c [duplicate]

I would like to know why this code is running. code: #include <stdio.h> int main(int argc, char* argv[]) { char* c = "1234567"; printf("%c\n", 5[c]); return 0; } ...
0
votes
2answers
40 views

stdarg.h not handling char pointer

So i have been trying to use stdarg for indefinite arguments. For int it works great but now i am trying this with char pointer. This is my code: void updateValue(char *parameter, parameterTypes ...
0
votes
1answer
95 views

JNI Pass Char* 2D array to JAVA Code

I want to pass the following pointer array through the JNI layer from C code char *result[MAXTEST][MAXRESPONSE] = { { "12", "12", "" }, { "8", "3", "" }, { "29", "70", "" }, { "5", ...
0
votes
3answers
92 views

Appending Char array to Char pointer

I have been on this fow quite some time now and i dont seem to figure it out. I have this code: unsigned char *src; int length = (parameterArray[i].sizeInBits/8) + 1; // check how long ...
1
vote
1answer
61 views

Pointer to a array of chars for string in C

I was asked this on an interview for an entry level position and was interested as to why you need two pointers. It was a phone interview and he had me write down char **a[5] and asked me what ...
2
votes
4answers
93 views

loading file with char pointer

I have a class that loads data from a file that requires char* fileName, but don't have a clear understanding on how to use it in this manner. // Constructor Foo(char* fileName) I understand that a ...
0
votes
1answer
62 views

Pointers & converting a char array to an int

I am doing some exercises to figure out how to access values in an array after they are changed with pointers. Can someone point out why the first output does not show the desired output? I am trying ...
2
votes
5answers
123 views

Difference between char *[] and char (*)[]

What is the difference between char *array[10]; and char (*array)[10]; ? By my understanding, Case 1: array is declared as an array of character arrays of size 10. This is because [] has ...
0
votes
2answers
73 views

C pointers to characters

I am misunderstanding something about C pointers: void putString(char* StringPtr, int length){ for(int i=0; i< length; i++) { USART_send(*StringPtr); ...
-1
votes
1answer
151 views

Splitting chars into array of char pointers

I'm trying to split up a line of 80 characters of input into an array where each element points to a string of chars. Essentially, turn a char a[80] like "Hello world!" into a char* b[64] where b[0] ...
-1
votes
5answers
377 views

C++ error: cannot convert ‘std::string {aka std::basic_string<char>}’ to ‘const char*’ [closed]

I thought a std::string was the pointer to the first character of a null-terminated array of chars. But if so, why is the compiler blaming at me?
2
votes
5answers
88 views

why pointer to char behaves differently as compared to pointersof other data types

I have doubts regarding following statments; int intvalue = 3; int *pointInt = &intvalue; char* p = "string"; cout << pointInt << std::endl; // this will give memory location of ...
1
vote
2answers
79 views

Find size of input char* and copy portion to output char* C

I have a char array LL,4014.84954 that I send into a function like this example: #include <stdio.h> #include <math.h> void myFunction(char* in_string, char* out_string) { ...
0
votes
6answers
206 views

C convert section of char array to double

I want to convert a section of a char array to a double. For example I have: char in_string[] = "4014.84954"; Say I want to convert the first 40 to a double with value 40.0. My code so far: ...
0
votes
4answers
244 views

Caesar Cipher C++ (using char pointer and shift as arguments)

I'm looking to make a method like so (which encrypts a message using Caesar Cipher, entered by the user and displays it): void encrypt(char *message, int shift); My code: #include <stdio.h> ...
1
vote
2answers
78 views

reading strings to a char array and then getting the size of the strings

Im working on a project and I am stumped on this part. I need to read words from stdin and place them in a char array and use an array of pointers to point to each word since they will be jagged. ...
-1
votes
1answer
32 views

Freeing an array of structures which has char pointers

#include <stdio.h> #include <stdlib.h> #include <string.h> typedef struct { int id; char *name; char *lastname; } student_type; typedef struct { student_type list[15]; } ...
0
votes
1answer
23 views

Number of characters in pointer

This is very simple but I forgot since the last time i did it was two months ago. I want to know how you find the number of characters (letters) in a string pointer. I tried to use sizeof() and ...
0
votes
1answer
48 views

Indexing an array of chars - issue with pointers

#include <iostream> #include <cstring> using namespace std; void getInput(char *password, int length) { cout << "Enter password: "; cin >> *password; } int ...
0
votes
2answers
140 views

How to bubble sort array of pointers to the another array of chars

I have one array containing chars from the input and the other array containing pointers to the corresponding chars in the first array. This part went good. But then I would like to bubble sort the ...
1
vote
1answer
62 views

How to make pointers to chars in the second array

I have an array of chars. n is array's length char tab[n]; cin.get(tab, n); cout<<tab<<"\0"<<endl; then I create second array char* t = new char[n]; for(int i = 0; ...
-2
votes
5answers
133 views

writing char pointer to console in c [closed]

I try to write a char array to console as a name but it doesn't work. Here is the code #include<stdio.h> #include<string.h> int F() { int S; printf("Type your student number(10 ...
1
vote
4answers
193 views

assigning char pointer to char and char array variable

Why is the following ok? char *a; char b[]="asdf"; a=b; But the following is not? char a[10]; char b[]="asdf"; a=b; The above gives error: incompatible types in ...
3
votes
3answers
159 views

Filling a char pointer in a struct

I have defined a "car" struct with a model (char *model) and the year of the model (int year). I have a function that will create a new car struct; however, it is seg faulting when copying the char ...
1
vote
3answers
110 views

Deleting char* after assigning it to a string variable

I have executed the below code and it works perfectly. Since it is about pointers, I just want to be sure. Though I'm sure that assigning char* to string makes a copy and even if I delete char*, ...
1
vote
2answers
128 views

get first char from *char[] variable in C

i want to get the first character of a string (char[]) in C. unsigned int N; unsigned int F; unsigned int M; char C; int main (int argc, char *argv[]){ if (argc!=5){ printf("Invalid ...
2
votes
2answers
71 views

Assigning string to pointer to character

I want to store string object to char * in C#.Net, how can I achieve that? My function is xyz(char *c) { } I want to pass this string as argument to this function: string s = "Hello" I am ...
1
vote
3answers
149 views

What does (char* ) do in C?

What does (char* )str do in the below code? /** * Main file */ #include <assert.h> #include <mylib.h> int main() { const char str[] = "this is my first lab\n"; int ret=1; ret ...
-1
votes
3answers
183 views

Splitting C char array into words

I am trying to split a given char array into separate strings. I am doing this by putting the address of each word into an array, and then getting the string from the address to print. So I have ...
-1
votes
1answer
63 views

C Setting pointer to a char* to a char*

I have a function setCharVal(char *s, int value){ valueStruct* makeStruct = malloc(sizeof(valueStruct)); makeStruct->s = s; //set other values } valueStruct has a char*s; when I print ...
-1
votes
1answer
151 views

Warning: format argument is not a pointer (arg 2)?

I get the error: warning: format argument is not a pointer (arg 2) with this line: printf("%s \n", *(group_list->name)); I don't understand why this is a problem considering that name is a ...
3
votes
1answer
100 views

Char *string [] declaration error

What is wrong with this declaration? char *add_element[] = {"1","S"}; I get this error when I compile this - warning: initialization discards qualifiers from pointer target type What am I doing ...
0
votes
0answers
42 views

Lists and Char Pointers - Last element in the list overwrites everything else

I have one list that contains multiple smaller lists. Each smaller list contains char arrays (well that where things get messy with pointers etc). So the problem is that that contents of the smaller ...
0
votes
1answer
146 views

Convert contents in char array to hex in C (ex: {'5', 'A'} to 0x5A)

I need to modify the stuff I have in stringList to be hex, and I need to do it inside MyFunction because WriteI2C needs to take in a hex value. For example, if stringList contained '5' and 'A', I ...
-1
votes
1answer
142 views

Initializing char pointer

I have a function ValArgument(char* ptr){ char str[] = "hello world"; ptr = &str[0]; } In this function, I want to init a char array and add it to the char pointer ptr. I call the ...

1 2 3 4 5 6