×

C# Tutorial

Basics of .Net

C# Basics

C# Fundamentals

C# Operators

C# Loops

C# Type Conversions

C# Exception Handling

C# String Class

C# Arrays

C# List

C# Stack

C# Queue

C# Collections

C# Character Class

C# Class and Object

C# Namespaces

C# Delegates

C# Constructors

C# Inheritance

C# Operator Overloading

C# Structures

C# File Handling

C# Convert.ToInt32()

C# Int32 (int) Struct

C# DateTime Class

C# Uri Class

C# Database Connectivity

C# Windows

C# Other Topics

C# Q & A

C# Programs

C# Find O/P

C# program to print size of various data types

C# example of sizeof() operator: Here, we are writing a C# program – it will print the size of various data types. By IncludeHelp Last updated : April 15, 2023

Printing Size of Different Data Types

In this C# program – we are going to print size of various data types, to print size of a type, we use sizeof() operator.

It accepts a data type and returns its size in the memory.

C# code to print size of different data types

// C# program to C# program to print 
// size of various data types

using System;
using System.IO;
using System.Text;

namespace IncludeHelp {
  class Test {
    // Main Method 
    static void Main(string[] args) {
      Console.WriteLine("sizeof(int): {0}", sizeof(int));
      Console.WriteLine("sizeof(float): {0}", sizeof(float));
      Console.WriteLine("sizeof(char): {0}", sizeof(char));
      Console.WriteLine("sizeof(double): {0}", sizeof(double));
      Console.WriteLine("sizeof(bool): {0}", sizeof(bool));

      //hit ENTER to exit the program
      Console.ReadLine();
    }
  }
}

Output

sizeof(int): 4
sizeof(float): 4
sizeof(char): 2
sizeof(double): 8
sizeof(bool): 1

C# Basic Programs »


Related Programs

Advertisement
Advertisement


Comments and Discussions!

Load comments ↻


Advertisement
Advertisement
Advertisement

Copyright © 2025 www.includehelp.com. All rights reserved.