Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
Node is saved as draft in My Content >> Draft
  • Signed and Unsigned Data Type

    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 36
    Comment on it

    While assigning data types when we have large bulk of data we select the data type accordingly.

     

    If our integer value have data that is out of range hence we will store it in another data type called object and that process is also called as boxing.

     

    Ex: int  a = 6;
         unsigned int b;
         int  c;
    
         b = (unsigned int)a;
    
          c = (int)b;
    

    The other process is to assign it using unassigned datatype that contains only positive values.

     

      Ex :    int i = 10;
                 object o = i;
                System.Console.WriteLine(o.ToString());
    
    .net

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: