Answers for "langage c malloc"

C
1

C malloc

#include <stdlib.h>
int main(){
int *ptr;
ptr = malloc(15 * sizeof(*ptr)); /* a block of 15 integers */
    if (ptr != NULL) {
      *(ptr + 5) = 480; /* assign 480 to sixth integer */
      printf("Value of the 6th integer is %d",*(ptr + 5));
    }
}
Posted by: Guest on August-28-2021
1

C malloc

Example: ptr = (int *) malloc (50)
Posted by: Guest on August-28-2021

Code answers related to "C"

Browse Popular Code Answers by Language