mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-06 03:23:58 +00:00
14 lines
152 B
C
14 lines
152 B
C
#include <stdio.h>
|
|
#include <malloc.h>
|
|
|
|
int main ()
|
|
{
|
|
int *x, y;
|
|
|
|
x = (int *) malloc (sizeof (int));
|
|
|
|
y = *x == 173;
|
|
|
|
printf ("x = %d\n", y);
|
|
}
|