I just tried giving the same values to a, b and d and every time I am running my code a random value is generated.
#include <stdio.h>
int main()
{
    int a = 4; //type declaration instructions
    int b = 999, c, d;
    a = b = d;
    printf("The value of a and b  is %d and %d \n", a, b);
    return 999;
}
 
     
     
     
     
    