Primary Data types

                                                     Primary Data types  






             Data type                     Keyword                Formal Specifier         Size                  Data Range          
  1. Character                         char                            %c                    1 bytes                 -128 to  127        
  2. Unsigned Character      unsigned char               <-- -->                8 bytes                0   to 255         
  3. Integer                               int                              %d                   2 bytes              -32768 to 32767    
  4. Long integer                    long int                         %ld                   4 bytes              -231 to 231                    
  5. unsigned integer           unsigned int                      %u                    2 bytes               0 to 65535     
  6. Float                              float                               %f                    4 bytes            -3.4e38 to 3.4e38       
  7. Double                           Double                          %lf                    8 bytes          -1.7e38 to 1.7e38        
  8. Long double                long double                       %Lf             12-16 bytes       -3.4e38 to 3.4e38     
  9. Void                                void                              Null                    Null                         Null                                             

Comments

Popular posts from this blog