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 840351
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T05:36:32+00:00 2026-05-15T05:36:32+00:00

I allocate a 2d array and use memset to fill it with zeros. #include<stdio.h>

  • 0

I allocate a 2d array and use memset to fill it with zeros.

#include<stdio.h>
#include<string.h>
#include<stdlib.h>

void main() {
    int m=10;
    int n =10;
    int **array_2d;
    array_2d = (int**) malloc(m*sizeof(int*));
    if(array_2d==NULL) {
        printf("\n Could not malloc 2d array \n");
        exit(1);
    }
    for(int i=0;i<m;i++) {
        ((array_2d)[i])=malloc(n*sizeof(int));
        memset(((array_2d)[i]),0,sizeof(n*sizeof(int)));
    }


    for(int i=0; i<10;i++){
        for(int j=0; j<10;j++){
            printf("(%i,%i)=",i,j);
            fflush(stdout);
            printf("%i ", array_2d[i][j]);
        }
        printf("\n");
    }
}

Afterwards I use valgrind [1] to check for memory errors. I get following error: Conditional jump or move depends on uninitialised value(s) for line 24 (printf("%i ", array_2d[i][j]);). I always thought memset is the function to initialize arrays. How can I get rid off this error?

Thanks!

Valgrind output:

==3485== Memcheck, a memory error detector
==3485== Copyright (C) 2002-2009, and GNU GPL'd, by Julian Seward et al.
==3485== Using Valgrind-3.5.0-Debian and LibVEX; rerun with -h for copyright info
==3485== Command: ./a.out
==3485== 
(0,0)=0 (0,1)===3485== Use of uninitialised value of size 4
==3485==    at 0x409E186: _itoa_word (_itoa.c:195)
==3485==    by 0x40A1AD1: vfprintf (vfprintf.c:1613)
==3485==    by 0x40A8FFF: printf (printf.c:35)
==3485==    by 0x8048724: main (playing_with_valgrind.c:39)
==3485== 
==3485== 
==3485== ---- Attach to debugger ? --- [Return/N/n/Y/y/C/c] ---- 
==3485== Conditional jump or move depends on uninitialised value(s)
==3485==    at 0x409E18E: _itoa_word (_itoa.c:195)
==3485==    by 0x40A1AD1: vfprintf (vfprintf.c:1613)
==3485==    by 0x40A8FFF: printf (printf.c:35)
==3485==    by 0x8048724: main (playing_with_valgrind.c:39)

[1] valgrind --tool=memcheck --leak-check=yes --show-reachable=yes --num-callers=20 --track-fds=yes --db-attach=yes ./a.out

[gcc-cmd] gcc -std=c99 -lm -Wall -g3 playing_with_valgrind.c

  • 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-15T05:36:32+00:00Added an answer on May 15, 2026 at 5:36 am

    At this line:

    /* sizeof(n*sizeof(int)) retuns a value of type size_t.
       This means you are initializing only sizeof(size_t) of the array. */
    memset(((array_2d)[i]),0,sizeof(n*sizeof(int)));
    

    It should be:

    memset(((array_2d)[i]),0, n*sizeof(int));
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am writing a dynamic array in C. typedef struct __c_array { void**_elem; int
I have c++ code that attempts to dynamically allocate a 2d array of bytes
Is there a way to use the new keyword to allocate on the stack
In a program I allocate a huge multidimensional array, do some number-crunching, then only
I am trying to allocate a array of char*'s in C. I know the
This question is in C++. I am trying to dynamically allocate an array of
If I need to get a NUL-terminated char array out of a std::string in
In C++ you can easily allocate one dimensional array like this: T *array=new T[N];
I use AllocMem/GetMem/New routines to allocate memory, then use FreeMem/Dispose routines to release memory.
If I want to use a PHP non-associative array like a dictionary and add

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.