What is the purpose of declaring a variable as unsigned?
Answers were Sorted based on User's Feedback
Answer / ganesh
-32768 to +32768 is the range of signed integer
0 to 65536 is the range of unsigned integer
so unsigned integer is used so that u can store value upto
65536 [just an example]
Is This Answer Correct ? | 3 Yes | 0 No |
Answer / satyagmk
The Unsigened types do not hold negative numbers; their
range is from 0 up to some maximum.
Is This Answer Correct ? | 1 Yes | 0 No |
Explain the advantages of cwinthread class.
What is the difference between Boxing and Unboxing in C#
What is microsoft visual c++ 2017 redistributable?
Do you need microsoft visual c++?
How many microsoft visual c++ do you need?
what is mean [] inc what is the use of include conio.h in c
what is the difference between the codes written in the document class and view class
how to declare and populate an array of checkBoxes
How do I install microsoft visual c++ 2015?
How do you define a function in vc++?
How can we allow no selection of radio button in grouped radio buttons?
What is more efficient to pass as a parameter--a pointer or an object? Why?