mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-06 11:41:34 +00:00
10 lines
94 B
C
10 lines
94 B
C
#include <stdio.h>
|
|
#include <malloc.h>
|
|
|
|
int main ()
|
|
{
|
|
int *x;
|
|
|
|
printf ("x = %d\n", *x);
|
|
}
|