subject

Add the following functions to the code:
oddsOnly - this function takes a string as an argument and it modifies this string in place (it does not return with the return statement) so that it deletes all characters that occupied even positions in the original string by shifting the characters that originally occupied odd positions. For example, if "hello there" were a parameter, then the updated string after the call to this function in the calling block would contain: "el hr". Don’t forget about the null character at the end of C strings and that strings in C could be simply treated as arrays of characters. Test this function by calling it from main.
Once the program runs properly, check for memory leaks and memory errors with Valgrind and apply more fixes, as needed
#include
#include
#include

char* repeated (char* original, int n);

int main(void) {

char *str = repeated("bon", 2);
printf("%s\n", str);
free(str);

char *str = repeated("bon", 3);
printf("%s\n", str);
free(str);

char *str = repeated("bon", 4);
printf("%s\n", str);
free(str);

return 0;

}

char* repeated (char* original, int n) {

int i, length = strlen(original);

char* newString = malloc (sizeof(char) * length * n + 1);

char* helper = newString;

for (i = 0; i < n; i++) {

strcpy( helper, original);

helper = helper + length;

}

return newString;

}

ansver
Answers: 3

Another question on Computers and Technology

question
Computers and Technology, 21.06.2019 21:00
Is it ok to use a does red wine clean the inside of a computer true or false
Answers: 2
question
Computers and Technology, 22.06.2019 12:30
Which of the choices sean are not true when considering virus behavior
Answers: 1
question
Computers and Technology, 22.06.2019 18:30
What is outfitting a workplace with video in a technology
Answers: 2
question
Computers and Technology, 22.06.2019 19:10
10. when you create a pivottable, you need to specify where to find the data for the pivottable. is it true
Answers: 2
You know the right answer?
Add the following functions to the code:
oddsOnly - this function takes a string as an argumen...
Questions
question
Social Studies, 10.03.2020 01:10
question
Advanced Placement (AP), 10.03.2020 01:11