mirror of
https://github.com/php/presentations.git
synced 2026-04-28 01:33:17 +02:00
9 lines
115 B
C
9 lines
115 B
C
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
memcpy((char *) 0, 10, 2);
|
|
return 0;
|
|
}
|