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

  • Home
  • SEARCH
  • 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 8053385
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T07:49:37+00:00 2026-06-05T07:49:37+00:00

Possible Duplicate: Segmentation fault on large array sizes A segmentation fault occurs when I

  • 0

Possible Duplicate:
Segmentation fault on large array sizes

A segmentation fault occurs when I run the program.

#include<iostream>
using namespace std;

int main(){
    int x[2000][2000];
    int y;
    cin >> y;
}

However, the following two programs are OK, when I run them.

#include<iostream>
using namespace std;

int x[2000][2000];
int main(){

    int y;
    cin >> y;
}

and

#include<iostream>
using namespace std;

int main(){
    int x[2000][2000];
    int y;
}

I am quite confused. Can anyone tell me why?

  • 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-06-05T07:49:39+00:00Added an answer on June 5, 2026 at 7:49 am

    Congratulations, you’ve found a stack overflow.

    In the first example, the large array x pushes y past the end of the stack, so accessing it crashes the program. (2) doesn’t crash because the large array you declared is in the data segment and so not on the stack; (3) doesn’t crash because you’re not actually accessing memory past the end of the stack (you’ve declared it, but aren’t reading or writing it).

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

Sidebar

Related Questions

Possible Duplicate: C programming, why does this large array declaration produce a segmentation fault?
Possible Duplicate: getting segmentation fault in a small c program Here's my code: char
Possible Duplicate: Getting Segmentation Fault // reverse a string #include`<stdlib.h>` #include`<stdio.h>` #include`<string.h>` #include`<math.h>` int
Possible Duplicate: strtok giving Segmentation Fault Why do i get segfault using this code
Possible Duplicate: Invalid read/write sometimes creates segmentation fault and sometimes does not I have
Possible Duplicate: Why is this C code causing a segmentation fault? char* string =
Possible Duplicate: Why does simple C code receive segmentation fault? Hey Everyone, I'm sure
Possible Duplicate: Difference of create Index by using include column or not using Edit:
Possible Duplicate: Segmentation fault in btree implementation How can we find the to find
Possible Duplicate: Why does simple C code receive segmentation fault? I am working in

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.