How to allocate memory and set the memory to zero in C

1 Answer

0 votes
#include <stdio.h>
#include <stdlib.h>

int main() {
   int len = 5;

   int *p = (int *)calloc(sizeof(int), len);
   
   for (int i = 0 ; i < len ; i++) {
      printf("%2d", p[i]);
   }
   
   free(p);
   
   return 0;
}



/*
run:

0 0 0 0 0
 
*/

 



answered Jul 18, 2020 by avibootz
edited May 1, 2022 by avibootz

Related questions

1 answer 217 views
2 answers 273 views
2 answers 159 views
1 answer 118 views
118 views asked Nov 30, 2023 by avibootz
1 answer 99 views
99 views asked Jan 31, 2023 by avibootz
...