String and Character Arrays in C Language

String and Character Arrays in C Language

瀏覽:660
日期:2026-04-21
strcat() function strcat("hello","world"); strcat() function will add the string "world" to "hello". strlen() function strlen() function will return the length of the string passed to it. int j; j=strlen("studytonight"); printf("%d",j); output : 12 strcmp...看更多