Question: *C Programming Language* Create a source file named strings.c using the editor of your choice. Create an empty C string array, named str1, that can
*C Programming Language*
Create a source file named strings.c using the editor of your choice.
Create an empty C string array, named "str1", that can hold a C string of 256 characters.
Copy the string, "hello", to str1.
Obtain the string length of str1.
Print the string length to the screen (monitor).
Create a new C string array, named str2, but initialize it with the string literal, "HELLO".
Compare str1 to str2 using the C strings library.
Print the result of the comparison to the screen (monitor).
Copy the string literal, " world", to str2.
Concatenate str1 and str2 by adding str2 to the end of str1 using a C strings library function.
Print str1 to the screen (monitor).
Print str2 to the screen (monitor).
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
