i wanted to find someone that can explain this to me. I have this program:
int main(int argc, char *argv[]){
printf("P ");
if(fork()==0)
printf("C ");
return 0;
}
The result of this program is: P P C
What's the reason for that second "P" ?