30 articles C Tutorials

Strcat() function in C – Concatenate strings

The strcat() function is used for string concatenation in C programming language. It means it joins the two strings together. Its syntax is as follows – strcat(string1,string2); String1 and string2 are character arrays. It concatenates (joins) second string at the end of the first string. It does so by removing the null character at the…

What is C language

C programming is a computer programming language which is widely used for developing application software. It is one of the most widely used programming language. It is a powerful, flexible, portable, and elegantly structured programming language. It combines the features of high-level language with the elements of the assembler, it is suitable for both systems…