answersLogoWhite

0


Best Answer

Strings represented by the language character set (e.g., ASCII) are stored as null-terminated arrays of type char. Wide-character strings are stored as null-terminated arrays of type wchar_t. Other types are also available, such as char16 and char32 (for UTF16 and UTF32 encodings, respectively).

User Avatar

Wiki User

8y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

12y ago

A string is represented as an array of characters. Often, the array is dynamically allocated and has one more element than needed; that last element is filled with a null to signify the end of the string.

This answer is:
User Avatar

User Avatar

Wiki User

13y ago

Strings are represented using arrays of type char.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How are string stored in c language?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is literal in c language?

a string constant


What is the array of string in c?

A string in C is stored in a 1 dimension array so an array of strings is simply a two dimension array.


How is a string stored in array?

The characters are stored in successive elements of the array with a nul (0) in the element after the last character of the string. Remember the array storing a string in C must be at least one element longer than the longest string to be stored in it to allow space for this nul (0) character.


Special character in C language?

special character in c language are as follows~ ' ! @ # % ^ & * () _ - + = | \ {} [] : ; " <> , . ? /


Definition of buffer in assembly language?

its just like a string of c++


What is string variables?

A string variable is a programming language construct that holds text. For example, the text "The sky is blue" could be stored to a string variable, then later in the program, that text could be displayed.


How you can convert from string to int in C language?

Use the atoi() or atol() function.


How print the string with double cot in c plus plus language?

console.wrikerle("""");


Int a is literal in C language or not?

int a; -- variable definition"int a" -- string literal


What is the syntax for string in c?

The C programming language has no notion of a string. The C runtime libraries interpret a string as an array of 'char' (sometimes 'unsigned char'), where a byte (char) with numerical value zero (often written as '\0' in C) denotes the end of the string. Modern variations also support modern forms of strings based on different data types (wchar, etc) in order to support more complex encodings such as Unicode. These, too, are interpretations of combinations of language features, but not a built-in part of the 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'


What are the functions of Atoi itoa and gcvt in C language?

All these are conversion functions - atoi()-string to integer.itoa()-integer to string.gcvt()-double to string