C program to print a string
C program to print a string C program to print a string using various functions such as printf, puts. It terminates with ‘\0’ (NULL character), which is used to mark the end of a string. Consider the following code: printf(“Hi there! How are you doing?”); Output: Hi there! How are you doing? The string…
Read more