answersLogoWhite

0

What are characters in c language?

User Avatar

Anonymous

13y ago
Updated: 8/20/2019

1. integer values between 0 and 255 (if unsigned)

2. integer values between -128 and 127 (if signed)

3. letters, digits, symbols like a-zA-Z0-9;,.?: etc

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

How many characters in c language?

98


How is a character defined in the C language?

The C language does not define any characters; all character representations are system-dependent. The C standard only requires that a system be capable of representing the execution character set (the characters and tokens utilised by the language itself). All characters utilised by C are within the lower 128 ASCII character codes (7-bit encodings) as found in ISO/IEC 8859, Windows-1252 and all other ASCII-compatible code pages.


Mention various types of white space in c language?

Your question has nothing to do with C language. Whitspace characters are: space, tabulator, carriage return, new line, new page, vertical tabulator.


In which Language is Linux written?

Linux supports any written language: it understands Unicode natively, so it can display the characters of any language with the appropriate locales included. As far as programming languages, Linux is written in C, but almost any language, from assembly to C to C++ to Python to Perl to .NET can be used on it.


Why c language has name c why not a?

C-language was derived from B-language.


What has the author C S Kwei written?

C. S. Kwei has written: 'Kwei's video codes for Chinese characters =' -- subject(s): Chinese language, Data processing


Which character comprise the c character set?

C does not use, nor requires the use of, every character found on a modern computer keyboard. The only characters required by the C Programming Language are as follows:A - Za -z0 - 9space . , : ; ' $ "# % & ! _ {} [] () $$$$ &&&& |+ - / * =The use of most of this set of characters will be discussed throughout the course.


What is previous language of c language?

language before c language is pascal


What is C language what does it do?

C Language is First Step of Programming Language, Help for C Language you are show the correct answer


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'


Where you use percent c and percent s in c language?

%c and %s are format characters used for input and output. These are mainly used in scanf and printf statements. %c is used for characters while %s is used for strings. For input, it is used to specify the type of the value to be read while for output, it is used to specify the type of the value to be printed.


What is the topNet class that everything is derived from in c?

C language: int (but C is NOT a .net language) C# language: object or System.Object