

InterviewSolution
Saved Bookmarks
1. |
Will the program outputs "IndiaBIX.com"? |
Answer» No. It will print something like 'IndiaBIX(some garbage values here)' . Because after copying the first 8 characters of source string into target string strncpy() doesn't terminate the target string with a '\0'. So it may print some garbage values along with IndiaBIX. | |