answersLogoWhite

0

only Z

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

What data type would you use to store 100 M?

char x[]="100 M";


Is The controlling expression for a switch statement can be a char?

char is actually integer, even so they are represented with letters. Anyway, yes you can use the controlling expression of type char in switch statements.


What is the difference between char and varchar2 in dbms?

no diff between varchar and varchar2 char store only chacter type but varchar2 store variable chacters. also varchar2 shirinks the space if not fully filled but char cant.


What is the difference between Char a equals string and char a equals String?

Well, if you write like char a=string; it is wrong. You have to declare the size of the array or else put the brackets immediately after the variable declaration. You also have to put the string in quotes, or provide a comma-separated list of characters. E.g.,char a[]={'s','t','r','i','n','g'};Or more simply:char a[] = "string";Remember that C/C++ is case-sensitive and that all keywords are lower case. Thus Char would be regarded as an invalid keyword.


How to find the size of dynamically allocated object using pointer?

Hi, The following statement will give the size. (char*)(ptr+1)-(char*)(ptr) Kalyan.S


What does a char store?

In JavaA char in Java is a 16-bit integer, which maps to a subset of Unicode.In C A char in C is an 8-bit integer, which maps to standard ASCII.Note that in both Java and in C you can use a char value like a normal integer type: char c = 48;


How do you pronounce charger?

You would have to say 'char-jer' with stress on the 'char' part


Declare a character pointer 'ptrString' and make it to point the string ati Explain your work diagrammatically?

char *ptrString = "ati'; ptrString is an object that contains the address of "ati". *ptrString, however, is a reference to the string "ati", and would be similar to the statement char nonptrString[] = "ati";


What is the difference between char and varchar data types?

The CHAR datatype uses a fixed length, where as the VARCHAR datatype can be variable in length up to the maximum value specified for the length. If you insert "Hello" into a CHAR(10) field, the column would actually contain "Hello " with 5 trailing spaces. The same value inserted in a VARCHAR(10) field would contain "Hello". char datatype is fixed length data type and it store maximum 255 characters while varchardatatype store up to 4000 character of variable length datatype


How much are bearded dragons at Char's reptile store?

as much as he says so


In C programming a character variable can at a time store how many characters?

You can store one, however if you make a char array: char[50]; You can make a string out of your array of characters.


Why not use the ampression symbol in scanf statement in function?

scanf is a function, not a statement. Example: int a; char name[12]; scanf ("%d %s", &a, &name[0]);