Question: String literals in C are actually stored as read-only sequences of characters by compilers and the address of the first character is used to access
String literals in C are actually stored as read-only sequences of characters by compilers and the address of the first character is used to access them. For example, char* a=Hello. Write a function that takes in a string (char*) and its length and prints the contents of the string to the screen. DO NOT USE printf(%s,..) in your function. It needs to take in a string from the user and the length that the user wants to print out. So if they put in "Hello there, 8" then the program would print out "Hello th".
This is what I came up with but I'm stuck.
#include
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
