ce006023eb466fe870ca26ff793c6d43a0958ba4
[mirrors/Programs.git] / c / contests / mrcrow.c
1 #include <stdio.h>
2 int main(){
3 int *d=malloc(sizeof(int));
4
5 //d=&d;
6 const int x=3; //x=4;
7 d=&x;
8
9 *d=5;
10 printf("%d\n",*d); //overeni
11 return 0;
12 }
This page took 0.500428 seconds and 5 git commands to generate.