How to find the digits truncation when assigning the
interger variable to the character variables.
like int i=500; char x = i : here we have truncation. how to
find this.
another ex: i =100; char x=i. here we do not have
truncation.
Answer Posted / ashu
when i=500 in int which means it is not going beyond the limit of integer range in memory but when x=i which means we are assigning value of i to x.. that is now x becomes 500 whose data type is "char" and range is only -128 to 127 in signed & 0 to 255 in unsigned.. i.e. it is crossing the range.. there we find truncation here
where as in 2nd ex: i=100 which then x=i in char datatype that is char x variable is assigned with i=100 which is not byond range of char data type..therefor no truncation in this example we can find.
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
What is the explanation for modular programming?
Explain how many levels deep can include files be nested?
Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings
The process of repeatedly running a set of computer instructions until some condition is specifed a) condition b) sequential condition c) global d) iteration
Write a function that will take in a phone number and output all possible alphabetical combinations
What is the meaning of c in c language?
Is multithreading possible in c?
What is the purpose of the preprocessor directive error?
What is boolean in c?
"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above
Why isnt any of this standardized in c?
Linked list is a Linear or non linear explain if linear how it working as a non linear data structures
What is the difference between typedef struct and struct?
What is hashing in c?
how to write optimum code to divide a 50 digit number with a 25 digit number??