#include #include #include #include #include int main() { int i, s; int a[] = {23,4,8,33,25,7,12,6,49,50,11,20,21,24,35}; pid_t pid; pid = fork(); if (pid == 0) { printf("I'm a child, I'll be printing the even numbers:\n"); for(i=0;i<(sizeof(a)/sizeof(int));i++) if(a[i]%2 == 0) printf("%d ",a[i]); } else { printf("I'm the parent, I'll be printing the odd numbers:\n"); if (pid > 0) pid = waitpid(pid, &s, 0); for(i=0;i<(sizeof(a)/sizeof(int));i++) if(a[i]%2 != 0) printf("%d ",a[i]); } return 0; } the output seem to have some error whereby it cannot output the number for the first if
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/wait.h>
int main()
{
int i, s;
int a[] = {23,4,8,33,25,7,12,6,49,50,11,20,21,24,35};
pid_t pid;
pid = fork();
if (pid == 0)
{
printf("I'm a child, I'll be printing the even numbers:\n");
for(i=0;i<(sizeof(a)/sizeof(int));i++)
if(a[i]%2 == 0)
printf("%d ",a[i]);
}
else
{
printf("I'm the parent, I'll be printing the odd numbers:\n");
if (pid > 0)
pid = waitpid(pid, &s, 0);
for(i=0;i<(sizeof(a)/sizeof(int));i++)
if(a[i]%2 != 0)
printf("%d ",a[i]);
}
return 0;
}
the output seem to have some error whereby it cannot output the number for the first if
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 1 images