what is unsigened char
and what is the difference from char
Answers were Sorted based on User's Feedback
char langth is -128 to 127
and unsigned char have no neathive value so langth is
increase 256 .
this is the main differece.
manish soni TBC jaipur
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / guest
insigned character occupies the -127 to +128 bits .
char it occupies only one byte
| Is This Answer Correct ? | 0 Yes | 1 No |
Describe how arrays can be passed to a user defined function
What is meant by high-order and low-order bytes?
who developed c and why he developed c?
Can we initialize extern variable in c?
sir, i cannot find the way how to write aprogram by using array on queue
f(*p) { p=(char *)malloc(6); p="hello"; return; } main() { char *p="bye"; f(p); printf("%s",p); } what is the o/p?
swap two integer variables without using a third temporary variable?
read a number & print all its devisors using c-program?
What is malloc calloc and realloc in c?
How can I pad a string to a known length?
what is the diff b/w static and non static variables in C. Give some examples plz.
What are the different properties of variable number of arguments?