answersLogoWhite

0

You put it between double quotes, "like this".

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

Where can one find online tutorials about using string format?

The string format used in C/C++ programming as well as JAVA is covered in many online tutorials. Both Microsoft and Oracle have sections dedicated to programming tutorials.


Why do you need a terminating null character at the end of the every string in C programming?

Because the null character represents the end of the string.


Why to use String in c?

C doesn't have String data-type, so don't use it.


What is return type of string in c?

In C programming, a string doesn't have a specific return type as it's essentially an array of characters. So, if a function is returning a string, it should be declared to return a pointer to a char (char*), since a string in C is represented as an array of characters terminated by a null character ('\0').


Which programming language uses a string of 1s and 0s?

You, as a programmer, can use a string with 1s and and 0s (or any other content) in each and every programming language.


What symbol or character determines end of string?

In C programming language, a string is an array of characters which is always terminated by a NULL character: '\0'


C plus plus library functions for string operations?

You can use "string" class in C++ for string operations or you may use c style string functions as well. #include <string> String class in C++ provides all basic function to operate on strings. you may details descriptin at http://www.cplusplus.com/reference/string/string/


What do you mean by string in java programming?

A "string" in any programming language is a line of text.


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 d command for squareroot in C programming?

There are no commands in C-programming, you should use function sqrt from math.h


What does 'strtok' mean in computing?

A strtok is used as a search string in computing where it can find a variable that is typed after " " (add a space), and then return it as a string. It is part of the C++ programming technique.


Which string function appends source string to the destination?

The string function that appends a source string to a destination string is typically called strcat in C and C++. This function takes two arguments: the destination string and the source string, and it appends the source string to the end of the destination string, modifying the destination string in place. In other programming languages, similar functionality may be achieved with functions like concat or the + operator for string concatenation.