Back To C++ Basic Index
an integer variable can store value from -32768 to +32767 , an unsigned integer variable can store value from 0 to 65535
//program to demonstrate unsigned integer variable #include
#include
void main() { unsigned int a; a=65534; cout<<"\nvalue of a is "<