answersLogoWhite

0

strcat if u wnt to use strcat then include string.h header file

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

What character allows you to concatenate strings in PHP?

To concatenate strings in PHP, you use the . (dot) character. For example: $str = "String1" . "String2";


A Write the algorithm to concatenate two given strings?

a write the algorithm to concatenate two given string


Which sign is used to concatenate two strings?

That depends on the programming language. Most languages use the "+" sign, but a few use other signs. For example, PHP uses the dot.


What symbol is use to join strings?

Language dependent. In C, for example, there no string as such, but you can use function strcat to concatenate zero-terminated character-sequences.


What is concatenate function in c?

strcat


What is mean by file handling in C programming?

There is a quite a lot of things you can do with files; some of them are: open, read, write, close, delete, copy, move, rename, concatenate, sort...


What are the advantages of using string?

Using strings in programming offers several advantages, including ease of manipulation and readability. Strings allow for straightforward representation of text data, making it simple to display, edit, and concatenate text. They also support various built-in functions for searching, formatting, and transforming text, enhancing efficiency in handling textual information. Additionally, strings are widely supported across programming languages, promoting portability and ease of integration.


What is it called when you add up letters?

concatenate is the operation of joining two character strings end to end. For example, the strings "snow" and "ball" may be concatenated to give "snowball".


What purpose do strings serve in programming?

Strings are a type of variable in computer programming. Simply put, they contain multiple characters which are "strung" together to make a piece of text. "Test", "House", and "Hello World!" are all excellent examples of what might be contained in a string. As a result, strings are used to store and convey any textual information.


How can I efficiently remove all occurrences of C strings from a given text or data set?

To efficiently remove all occurrences of C strings from a given text or data set, you can use a programming language like Python or C to search for and replace the C strings with an empty string. This can be done using functions like replace() in Python or std::string::replace() in C.


What is operator over loading?

Same operator can be used for different purposes like + can be used for addition of two integers and used for concatenate strings.


C program to concatenate two strings?

#include#includevoid main(){char a[30],b[30];clrscr();printf("Enter the string a:");gets(a);printf("Enter the string b:");gets(b);printf("%s",strcat(a,b));getch();}