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