docs
[mirrors/Programs.git] / c / termio.c
CommitLineData
21c4e167
H
1#include <stdio.h>
2#include <stdlib.h>
3
4int 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.238079 seconds and 4 git commands to generate.