Basic and Advance C Question:
How do we print only part of a string in C?
Answer:
/* Use printf() to print the first 11 characters of source_str. */
printf(First 11 characters: ‘%11.11s’n, source_str);
printf(First 11 characters: ‘%11.11s’n, source_str);