Tech Study

C# Program To Find Size Of Data Types

Introduction

C# Program to find the Size of data types. 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

C# Program to find the Size of data types
C# Program to find the Size of data types

How to print ascii value in c#

Export HTML String to PDF file in C#

TaggedC++ Program to find the Size of data types

Java Final keyword

Introduction : java final keyword The final keyword present in Java programming language is generally used for restricting the user. …

Read more

C++ Memory Management: new and delete

C++ Memory Management We know that arrays store contiguous and the same type of memory blocks, so memory is allocated …

Read more