Say i have an
int c =8;
and i want to do a fork to say do a printf
printf("hello im number blah blah");
is there a way to do that printf as many times as whatever c is equal too?
using a fork().
maybe something like
int pid;
pid=fork(c)
printf("hello im number blah blah");