osi referans modeli
Posted on
OSI REFERANS MODELİ.
tcp ip uygulama katmanlari piramidi
Posted on
TCP / IP uygulama katmanları piramidi.
osi katmanlari kisa
Posted on
OSI KATMANLARIkısa açıklama.hatırlama mahiyetinde.
get ready before midterm
Posted on
get ready before midterm
Get the value from hex
Posted on
Get the value from hex
Casting char * to byte
Posted on
Casting char * to byte
fork() - how many process
Posted on
fork() - how many process
if ((p1_pid = fork())== 0) {}
printf("I am P1 and I am proud of it.");
} else {
if ((p2_pid = fork()) == 0)
{
p3_pid == fork();
printf("I am P3. I like it.");
p4_pid == fork();
printf("I am P4. Get used to it.");
} else
printf("I am the parent process, obey or die!");
}
what is fork (), fork() komutunu anlamak
Posted on
what is fork (), fork() komutunu anlamak
++i and i++
Posted on