CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: rapid7/metasploit-framework
Path: blob/master/external/source/byakugan/test/testBufIdent.cpp
Views: 11778
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