Files
metasploit-gs/external/source/byakugan/test/testBufIdent.cpp
T

11 lines
146 B
C++
Raw Normal View History

2008-08-20 19:27:03 +00:00
#include <stdio.h>
#include <string.h>
int main() {
char ownme[256];
memset(ownme, 'A', 280);
printf("%s\n", ownme);
return (0);
}