Tagged Questions
0
votes
1answer
33 views
C Programming. Comparing an array's contents.
I have an array as result of my program's input:
//1.
int i, numberOfOccurances;
for(i = 0; i < numOfOccurrances; i++) {
printf("%d",PrintOccurrances[i]);
}
and as an example ...
0
votes
4answers
40 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
66 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 ...
-5
votes
1answer
41 views
C: Reading strings from binary file
I have a home assignment which says that I have to store information about a mansion in a binary file. On the first line of that file I have to keep information about how many floors there are in the ...
0
votes
0answers
46 views
Usage of asprintf and isprintf in C
I am using asprintf in application where it capturing every packet from the networks. The use of asprintf is as below. The final value of hexValue consist of hexValue of the whole data packet. Then I ...
0
votes
5answers
74 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
59 views
Reversing a C string function crashes?
I'm trying to write a C function to reverse a passed in C style string (ie char *) and return the char pointer of the reversed string. But when I run this in VS2012, nothing is printed in terminal and ...
7
votes
5answers
184 views
Why printf(“%s”,(char[]){'H','i','\0'}) works as printf(“%s”,“Hi”), but printf(“%s”,(char*){'H','i','\0'}); fails? [duplicate]
I really need help on this.It has shaken my very foundation in C.Long and detailed answers will be very much appreciated.I have divided my question into two parts.
A: Why does ...
0
votes
3answers
63 views
Not working / with own Strncpy function
I'm having probs with an own function that should make str2 copied to str1 based on the amount of characters.
char * strncpy_own(char * str1, char * str2, int c)
{
int i;
for( i = 0; i < ...
1
vote
1answer
19 views
sscanf function changes the content of another string
I am having problems reading strings with sscanf. I have dumbed down the code to focus on the problem. Below is a function in the whole code that is supposed to open a file and read something. But ...
1
vote
3answers
108 views
Parse a string in C and save it to an array of structs
I am quite familiar with Python coding but now I have to do stringparsing in C.
My input:
input = "command1 args1 args2 arg3;command2 args1 args2 args3;cmd3 arg1 arg2 arg3"
My Python solution:
...
1
vote
1answer
43 views
Free defined String Constants
I'm working on an encryption application which implements an algorithm I made. I have about a year of experience in C and 6 months of experience in C++, but I have 6 years of experience in Visual ...
3
votes
2answers
104 views
Writing strend(s, t) (check if `s` ends with `t`) using pointers
I am writing an implementation of strend(s, t), which checks if a string s ends with string t.
Example, if -
char s[] = "abcdefoo";
char t[] = "foo";
then, strend(s, t) is true because "abcdefoo" ...
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.
...
1
vote
3answers
54 views
Concatenation with 2 strings
I've seen methods of doing this with "strcopy" and "strcat", but I'm not allowed to use any predefined string functions.
I'm given:
void str_cat_101(char const input1[], char const input2[], ...
1
vote
3answers
59 views
String Manipulation and rot-13
I have to basically take the input array of characters and translate it into the result array using rot-13. So, here's what I'm thinking of doing: use a for loop and then use conditionals inside the ...
-1
votes
2answers
79 views
Using strcmp in an if statement
I am fairly new to C, and I am trying to understand using strings and strcmp to compare two strings in an if statement.
My goal is to be able to run a different function depending on what the user ...
-1
votes
2answers
61 views
Ignore commas in string
I have the following code:
char dump[50];
char genre[50];
char line[300] = "Can't Help Falling in Love, Michael Buble, Pop";
sscanf(line, "%s %s %s", dump, dump, genre);
The character array "line" ...
-7
votes
4answers
94 views
Why does initializing char array to output of function returning char* not compile? [closed]
Why is char name[20]="Solyent"; compiling fine and assigning "Solyent" to name[] but the declaration-cum-initialization below not working ?
char name[20]=strcpy("Solyent","Heston");
Why isn't ...
0
votes
0answers
27 views
C seriaPort.write(“F”),,,PIC can't read it.
my C will do //seriaPort.write("F")// send str to P18f4520 microcontroller, but the PIC can read from RS232
here is my code inside P18f4520
#include <p18f4520.h>
#include <usart.h>
...
2
votes
2answers
73 views
How are char ** objects saved?
Today, I asked me, how char ** objects are saved in memory or in binary files. I tested that with the following code snippet:
char **array = (char *)malloc(3 * sizeof(char *));
array[0] = "Foo"; ...
2
votes
4answers
102 views
How do you convert a MAC address (in an array) to string in C?
How do you convert a MAC address within an int array to string in C? For example, I am using the following array to store a MAC address:
int array[6] = {0x00, 0x0d, 0x3f, 0xcd, 0x02, 0x5f};
How do ...
1
vote
2answers
69 views
My function filling string value
I have the following function
void runSysCall(char *command, char *output)
{
FILE *cmdline = popen(command, "rb");
size_t size = 0;
while(getdelim(&output, &size, 0, cmdline) ...
0
votes
3answers
53 views
Double array Strings interconnect in output - C Programming
I have this code:
#include <stdio.h>
int main(void) {
char p[5][5];
int i,j;
for(i=1;i<=1;i++){
for(j=1;j<=2;j++) {
printf("\nInput Product code %d of ...
0
votes
2answers
45 views
Formatting a string based on Input and predefined values
I have 26 values's that i am considering as Special Symbol and are as with special delimeter "$" the value's can be from $A to $Z.
Same time i have a predefined template as:
I have $A,$B,$C.....
...
1
vote
1answer
26 views
Declare and allocate memory for an array of structures in C
I'm trying to declare and allocate memory for an array of structures defined as follows:
typedef struct y{
int count;
char *word;
} hstruct
What I have right now is:
hstruct *final_list;
...
1
vote
0answers
39 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. ...
0
votes
2answers
76 views
Why does RegSetValueEx work even when I break the rule about accounting for NUL termination in the length?
I've got a simple program that adds calc.exe to startup:
#include <windows.h>
#include <tchar.h>
int main(){
_tprintf(TEXT("Adding calc.exe to ...
0
votes
2answers
61 views
C programming - matrix-based function not working
In a program I'm currently writing, I have this function, which reads the input and stores each line in an entry of an array of characters. n is a number previously given in the input, and represents ...
0
votes
3answers
58 views
For “char list[3][10];” why does all of these work as scanf() %s arguments---&list[i],list[i],&list[i][0]?
Isn't char* the only valid argument type for the %s format specifier used in the format specifier string of scanf()?If so,in my program why each one of these work exactly the same for both scanf()'s ...
2
votes
3answers
104 views
Allocate memory to char *** in C
So, I'm having trouble in allocating memory for a char *** type variable. My objective is to create a matrix of strings and the code I currently have for memory allocation is the following:
char ...
1
vote
4answers
114 views
somebody please explain about strings in c?
how to store two strings one after other without concatenation (we can increment the address)
char str[10];
scanf("%s",str);
str=str+9;
scanf("%s",str);
NOTE: Here if I give first string as BALA ...
2
votes
2answers
86 views
Find substring in a string
Here is my code to find substring entered by the user in the given string.
bool find_str(char *str, char const *substr) {
while(*str) {
if(*str++ == *substr) {
char const *a ...
3
votes
4answers
62 views
C: intializing struct with an array of strings
I'm trying to do the following, but the compiler is complaining about brackets, however, I can't find my way to an alternative.
struct cards {
char faces[13][6], suits[4][9];
}
typedef struct ...
2
votes
1answer
45 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 ...
0
votes
2answers
56 views
Debugging beginner C crash, looking for alternate logic with bug found
I was doing a study on a program which is working (mostly) and... I ran into a bug that causes a complete crash in the system at the finish line. After print-screening to pinpoint the leak, I'm ...
0
votes
5answers
49 views
strcpy() of a small string into a bigger string leaves the rest of the bigger string unchanged.How to deal with it?
Here in this sample program to illustrate this behavior of strcpy(),I wrote a string "S" into a bigger string previous which original had "Delaware".But this overwriting only affects the first two ...
0
votes
2answers
42 views
Converting String style from Arduino to C common style
I have the following code
void loop() {
String outMessage = ""; // String to hold input
while (Serial.available() > 0) { // check if at least one char is available
char inChar = ...
2
votes
3answers
50 views
Declaration of an array of strings and selecting a single character
I am new to c programming and am trying to print on the screen which key of a keypad is pressed. I have the program to the stage where it prints the row and column number of the key that was pressed. ...
-4
votes
3answers
85 views
C compare string literal with function returning char pointer
Why does this code:
strcmp(myfunction(0), "OK");
where myfunction is defined like this:
char *myfunction(int p)
{
if (p == 0)
{
return("OK");
}
}
give the following error:
...
2
votes
1answer
77 views
Is there any way to check if any or all characters are present in a string in C?
I was trying to check and see if I give an array of characters -
like this
char array_values[] = { 'A','B','C','D','a','b','c','d' };
and then running a sort of character matching in multiple ...
0
votes
1answer
84 views
Converting a stack to a string
I'm trying to convert a stack into a string. The function I have is
int StackToString(const struct Stack *stack, char *result, int resultSize);
I want my stack to look like
...
1
vote
2answers
41 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
vote
2answers
65 views
C Character Replace in One Line
I've been learning about some of the clever C functions that require a loop, but no loop body to execute (like strcpy()), and so are only one line long.
Just out of interest, is there any way to ...
0
votes
6answers
100 views
pass string to function in C
I have a simple program which reads in a list of positions and velocities, though it is not compiling. I simply want to ask the user for the name of the position and velocity file and then output the ...
0
votes
2answers
60 views
C : Array of strings - Can input only n-1 strings for an input size of n
I have to sort strings in a lexicographical order using the Bubble Sort technique without using any library functions. I have written the following code which is working fine in sorting the strings.
...
2
votes
10answers
176 views
How to memcpy() from argv[]?
I want to copy string from argv[0] but I don't know how to get the size of argv[0].
How to do this?
int main(int argc, char* argv[])
{
char str[20];
if(argc>0)
memcpy(str, argv[0], ...
3
votes
4answers
10k views
Split string with delimiters in C
how to write a function to split and return an array for string with delimiters in C Language
char* str = "JAN,FEB,MAR,APR,MAY,JUN,JUL,AUG,SEP,OCT,NOV,DEC";
str_split(str,',');
64
votes
9answers
25k views
What is the difference between char s[] and char *s in C?
In C, I can do like this:
char s[]="hello";
or
char *s ="hello";
So I wonder what is the difference? I want to know what actually happens in memory allocation during compile time and run time.
...
21
votes
8answers
30k views
What is the function to replace string in C?
Given a (char *) string, I want to find all occurrence of a substring and replace it with an alternate string. I do not see any simple function that achieves this in <string.h>





