Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 893969
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T14:18:23+00:00 2026-05-15T14:18:23+00:00

What is the main function of sizeof (I am new to C++). For instance

  • 0

What is the main function of sizeof (I am new to C++). For instance

int k=7;
char t='Z';

What do sizeof (k) or sizeof (int) and sizeof (char) mean?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T14:18:23+00:00Added an answer on May 15, 2026 at 2:18 pm

    sizeof(x) returns the amount of memory (in bytes) that the variable or type x occupies. It has nothing to do with the value of the variable.

    For example, if you have an array of some arbitrary type T then the distance between elements of that array is exactly sizeof(T).

    int a[10];
    assert(&(a[0]) + sizeof(int) == &(a[1]));
    

    When used on a variable, it is equivalent to using it on the type of that variable:

    T x;
    assert(sizeof(T) == sizeof(x));
    

    As a rule-of-thumb, it is best to use the variable name where possible, just in case the type changes:

    int x;
    std::cout << "x uses " << sizeof(x) << " bytes." << std::endl
    // If x is changed to a char, then the statement doesn't need to be changed.
    // If we used sizeof(int) instead, we would need to change 2 lines of code
    // instead of one.
    

    When used on user-defined types, sizeof still returns the amount of memory used by instances of that type, but it’s worth pointing out that this does not necessary equal the sum of its members.

    struct Foo { int a; char b; };
    

    While sizeof(int) + sizeof(char) is typically 5, on many machines, sizeof(Foo) may be 8 because the compiler needs to pad out the structure so that it lies on 4 byte boundaries. This is not always the case, and it’s quite possible that on your machine sizeof(Foo) will be 5, but you can’t depend on it.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Here is my main function: int main(int argc, char **argv) { LoadFile(); Node *temp;
Possible Duplicate: Can main function call itself in C++? I found this problem very
Does the main function we define in C or C++ run in a process
I have a main function in javascript that is function a() { some code
I have main.cpp (including main function) and func1.cpp, and I want to link these
In Winforms you just have the Main function and that's what runs first, but
I don't understand why C#'s Main function is void by default (in a console
This loop works fine in Main function but when copy this loop code in
I've recently come across a C program in which the main function only took
I am trying tot pass argv from the main function of my program to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.