Name: Anonymous 2017-05-24 10:23
http://blog.checkpoint.com/2017/05/23/hacked-in-translation/
Was this brought on us by using media players made in C?
Was this brought on us by using media players made in C?
#include <stdio.h>
int main(void)
{
/*
* buf is initialized to an array of 32 zero bytes, and since the
* fread call will read in at most 31 bytes into buf, the resulting
* string is guaranteed to be nul-terminated.
*/
char buf[32] = {0};
fread(buf, 1, 31, stdin);
printf("You said %s!\n", buf);
return(0);
}