answersLogoWhite

0


Best Answer

You can store one, however if you make a char array:

char[50];

You can make a string out of your array of characters.

User Avatar

Wiki User

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

Wiki User

12y ago

One of the 256 possible value.

This answer is:
User Avatar

User Avatar

Anonymous

Lvl 1
3y ago

2

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: In C programming a character variable can at a time store how many characters?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is a ponters in c-programming?

with the help of pointers we able to store the memory location of any variable. In c the pointer variable is use to store the memory location of any variable. The pointer variable is define as a simple variable but in pointer variable use a special "*" character at the left most side of name of pointer variable. If any variable name have * it means it is a pointer variable it hold the memory location of variable.


A n BLANK data type can store a variable amount of text or combination o text and numbers where the total number of characters may exceed 255 a Unlimited b Variable c Memo d Character?

memo


How many character can store a character variable at a time?

One. If you want more, use an array.


How do you store a character in a variable?

In Java a primitive data type called 'Char' is used to store a single character of text.Char myChar = "a";


How many values can store a variable at a time?

Yes. For example: char c= 'A'; ... c= 'B';


What is a variable name?

In programming it is a name, or tag, that you assign in your program in order to save information or store some data.


Is class a pointer?

No. In computer programming, a class is a data type while a pointer is a variable that can store a memory address.


What does variable allow you to do that you couldn't do before?

In computer programming, or in algebra? In computer programming, you can store a value that you recover later, and you can do generic calculations, which work for all sorts of numbers, not just for one specific number.


What does a variable allow you to do that you couldn't do before?

In computer programming, or in algebra? In computer programming, you can store a value that you recover later, and you can do generic calculations, which work for all sorts of numbers, not just for one specific number.


How man character's can 8 bytes store?

One byte is made up of 8 bits, and each bit can store 1 character. Therefore, 8 Bytes can store 64 Characters.


What is the amount of memory it takes to store a single character?

Characters are typically stored in 8 bits.


In Access text data type contain maximum character of?

In Access, the Text data type can hold up to 255 characters. If you need to store more characters, you can use the Memo data type, which can store up to 65,535 characters.