How do we print only part of a string in C?

Submitted by: Administrator
/* Use printf() to print the first 11 characters of source_str. */
printf(First 11 characters: ‘%11.11s'n, source_str);
Submitted by: Administrator

Read Online C Programming Job Interview Questions And Answers