Monday 21, May 2012
Welcome Guest, Register | Login  
      Home    |    Tutorials    |    Free Ebooks    |    Free Scripts    |    Articles    |    Blog     |    About Us    |    Contact Us

  Program to shows size of data types used in C++

Here is a c++ program example to show the size of data types used in c++.
Cut & Paste Script
#include<iostream.h>
int main()
{
    int a;
    long b;
    short c;
    float d;
    double e;
    bool f;
    char g;

    cout<<"int size     = " <<sizeof(a)<<endl;
    cout<<"long size    = " <<sizeof(b)<<endl;
    cout<<"short size   = " <<sizeof(c)<<endl;
    cout<<"float size   = "<<sizeof(d)<<endl;
    cout<<"double size  = "<<sizeof(e)<<endl;
    cout<<"bool size    = "<<sizeof(f)<<endl;
    cout<<"char size    = "<<sizeof(g)<<endl;
    return 0;
}
Output:
int size     = 4
long size    = 4
short size   = 2
float size   = 4
double size  = 8
bool size    = 1
char size    = 1
Press any key to continue
 
   
     RELATED SCRIPTS
 
Creating an array of objects using c++

Here is a program example to show how to declare an array of an object and use of array of an object.

...more »
Category : C++ Programs Hits : 1532
   
program to display table of digit entered by the user
Here is a program to display table of digit entered by the user using c++....more »
Category : C++ Programs Hits : 679
   
Program to reverse a 2 digit number
This program will reverse a two (2) digit number. Input number must be of 2 digits....more »
Category : C++ Programs Hits : 596
   
program to print a rectangle of "*"
The following program forms a rectangle of "*"
(Length and width of rectangle entered by user)...more »
Category : C++ Programs Hits : 992
   
swaping two strings in c++
Here is a code example to swap two strings using c++....more »
Category : C++ Programs Hits : 610
   
   
SCRIPT CATEGORIES
 
  C Programs
C Programs scripts
  C++ Programs
C++ Programs scripts
  Java Programs
Java Programs scripts
  JavaScript Examples
JavaScript Examples scripts
  PHP Examples
PHP Examples scripts
  VBScript Examples
VBScript Examples scripts
 
 
 
POPULAR E-BOOKS
 
Download PC Assembly Language  Ebook PC Assembly Language
   
Download An Introduction to Computer Security: The NIST Handbook  Ebook An Introduction to Computer Security: The NIST Handbook
   
Download Are You Ready Ebook Are You Ready
   
Download How To Think Like A Computer Scientist, Java Version Ebook How To Think Like A Computer Scientist, Java Version
   
Download 	JavaScript Essentials Ebook JavaScript Essentials
   
 
Studiesinn.com © 2012 All Rights Reserved.
Website Designed & Developed by TechXprtz