Reference no: EM13164646
Write a C program to concatenate (i.e., to join) two strings. Specifically, implement a function called
char* my_strcat(char *s1, char *s2);
that takes as input pointers to two strings (s1 and s2), dynamically creates an array (say s) of the right size needed to store the concatenation of the two strings, concatenates s2 to the end of s1 (by first copying s1 to s, then s2 to s), and returns the address of s. For example, if s1 is yahoo\0 and s2 is .com\0, then s becomesyahoo.com\0
In the main function, prompt the user to enter two strings (without spaces), call themy_strcat function to concatenate the two strings, and finally print the string returned by the function.
#define SIZE 50 in the program, assuming that the user enters strings containing at most 50 characters (without spaces), and use SIZE whenever needed in the program, so that the program works correctly even if SIZE is changed.
Problem 2:
Write a C program to multiply a set of complex numbers stored in an array (that has been dynamically allocated). Specifically, first prompt the user to enter how many complex numbers need to be multiplied, dynamically create an array to store the user specified number of complex numbers, multiply the numbers, and finally print the result (in the a +bi format).
One can multiply the set of complex numbers in an iterative manner (multiplying two complex numbers in each iteration). To multiply the two complex numbers (in each iteration) you can use the "multC_ByValue" and "multC_ByRef" functions that you implemented in the last assignment. "sizeof(complex)" would get you the number of bytes needed to store a complex number.
Controversial trayvon martin case and racism
: Trayvon Martin was a 17 year-old African American teenager. He was unarmed and was shot by George Zimmerman in February of 2012. George Zimmerman was a 28 year-old Hispanic American who was the neighborhood watchperson in his Florida community.
|
Society literature matters more than as entertainment
: What have you read or seen in the last year that supports the idea that in your own society literature matters more than as merely a form of entertainment? "
|
Individual business decisions
: To what extent can individual business decisions (as opposed to economic forces) explain deterioration in working conditions for many workers?
|
Dynamic character arrays
: Dynamic character arrays str and add contain strings. Write a function append that uses str and add as arguments and appends add to the end of str. Write a main program that illustrates the use of function append to concatenate five strings.
|
Multiply a set of complex numbers
: Write a C program to multiply a set of complex numbers stored in an array (that has been dynamically allocated). Specifically, first prompt the user to enter how many complex numbers need to be multiplied, dynamically create an array to store the ..
|
Afterwards a way for the user to input
: And so on and so forth then afterwards a way for the user to input that they finished a particular task on the list. After the user has input that they have finished a particular task the program should be print "Good Job!" or "Keep it up!"
|
User enters a list of car parts
: So if the user enters a list of car parts, the programm holds this list. Afterward, when the user types in the name of the part the programm outputs that name from the list.
|
Individual genes are substrings of a genome
: Individual genes are substrings of a genome delineated by 3-element start and stop codons. Genes begin with the start codon ATG and end with one of the following 3 stop codons: TAG, TAA or TGA. Note that start codons can appear anywhere in the string..
|
Function that accepts a pointer to a c-string
: Write a function that accepts a pointer to a C-string as an argument and returns the number of words contained in the string. Also have it display the average number of letters in each word.
|