String and Character Arrays in C Language

String and Character Arrays in C Language

瀏覽:1276
日期:2025-04-23
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...看更多