Added some small boring scripts and programs writen in few last years
[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.242702 seconds and 4 git commands to generate.