Wednesday, March 11, 2020

The function "strcat()"

To add a string at the end of a string

Char x[]= "My name is"

strcat( x , "Mahabub" ) 

x[] = "My name is Mahabub"

No comments:

Post a Comment