blob: 44ab712e42503527c361f761da3b85678be52245 [file] [log] [blame]
#include <stdio.h>
#include <malloc.h>
int main ()
{
int *x, y;
x = (int *) malloc (sizeof (int));
y = *x == 173;
printf ("x = %d\n", y);
}