Find output of below C program?
#include <stdio.h>

int main()
{
   char *_ptr;
   *_ptr = malloc(10);
   *_ptr = 999;
   printf("%d",*_ptr);
    return 0;
}

Posted on by