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 |
read the folllowing code # define MAX 100 # define MIN 100 .... .... if(x>MAX) x=1; else if(x<MIN) x=-1; x=50; if the initial value of x=200,what is the vlaue after executing this code? a.200 b.1 c.-1 d.50
what is a function method?give example?
what is use of malloc and calloc?
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none
#include main() { int i=1,j=2; switch(i) { case 1: printf("GOOD"); break; case j: printf("BAD"); break; } }
What is the difference between class and object in c?
for(i=1;i>0;i++); printf("i=%d",i); what will be the answer????
What are predefined functions in c?
What are near, far and huge pointers?
0 Answers Hexaware, Thomson Reuters, Virtusa,
How many main () function we can have in a project?
largest Of three Number using without if condition?
What is pointer to pointer in c?