Q:

C# Program to find the Size of data types

0

C# Program to find the Size of data types.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

This program is compiled and tested on a Visual Studio 2012..

using System;

namespace TechStudyCSharp
{
    class Program
    {
        static void Main(string[] args)
        {
            
            Console.WriteLine("Size of char: " + sizeof(char));
            Console.WriteLine("Size of Short: " + sizeof(short));

            Console.WriteLine("Size of int: " + sizeof(int));
            Console.WriteLine("Size of long: " + sizeof(long));

            Console.WriteLine("Size of float: " + sizeof(float));
            Console.WriteLine("Size of double: " + sizeof(double));
            Console.ReadKey();
        }
    }
}

Result:

Size of char: 2

Size of Short: 2

Size of int: 4

Size of long: 8

Size of float: 4

Size of double: 8

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C# Program to Print ASCII Value... >>
<< C# Program to convert farenheit to celcius...