docs
[mirrors/Programs.git] / c / termio.c
1 #include <stdio.h>
2 #include <stdlib.h>
3
4 int main() {
5 unsigned char *lol;
6 lol = malloc(99*sizeof(char));
7 *lol = "HAI SUXORZ!!!!\n";
8 free(lol);
9 printf("%s", lol);
10 }
This page took 0.260053 seconds and 4 git commands to generate.