Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
rapid7
GitHub Repository: rapid7/metasploit-framework
Path: blob/master/external/source/byakugan/test/testBufIdent.cpp
24706 views
1
#include <stdio.h>
2
#include <string.h>
3
4
int main() {
5
char ownme[256];
6
7
memset(ownme, 'A', 280);
8
printf("%s\n", ownme);
9
return (0);
10
}
11
12