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/data/cmd_exec/show_args.c
Views: 11765
1
int printf(const char *format, ...);
2
3
int main(int argc, char *argv[]) {
4
for (int i = 0; i < argc; i++) {
5
printf("%s\n", argv[i]);
6
}
7
}
8
9