Pastebin
API
tools
faq
paste
Login
Sign up
SHARE
TWEET
Untitled
a guest
Apr 21st, 2017
106
0
Never
Add comment
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!
text
0.16 KB
| None
|
0
0
raw
download
clone
embed
print
report
#include <unistd.h>
void recursion(int n) {
if (n!=0){
if (fork() == 0) {
recursion(n-1);
}
}
}
int main() {
recursion(10);
while (1);
return 0;
}
Advertisement
Add Comment
Please,
Sign In
to add comment
Public Pastes
This month smells like money
CSS | 10 min ago | 1.04 KB
✅ API Flaw Money Method
CSS | 10 min ago | 1.04 KB
⭐ Exploit Documentation ⭐
CSS | 10 min ago | 1.04 KB
SEO-optimized list of photography and videogr...
3 hours ago | 3.84 KB
Untitled
5 hours ago | 168.27 KB
Untitled
5 hours ago | 2.09 MB
Untitled
7 hours ago | 345.50 KB
Untitled
8 hours ago | 419.70 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the
Cookies Policy
.
OK, I Understand
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!