You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
206 B

/**
* :author: Dan Buch (daniel.buch@gmail.com)
*/
#include <stdlib.h>
int main()
{
int* p;
p = (int*)malloc(sizeof(int));
*p = 10;
return 0;
}
/* vim:filetype=c:fileencoding=utf-8
*/