top of page

One Person One Job



#include <stdio.h>


void main() {

int people, job;

int pc=0, jc=0,flag=0;

printf("\nEnter the limit of people : ");

scanf("%d",&people);

printf("\nEnter the limit of jobs : ");

scanf("%d",&job);

int a[people][job];

int res[people][job];

for(pc=0;pc<people;pc++)

{

for(jc=0;jc<job;jc++)

{

printf("\nGive a job or not(0/1)");

scanf("%d",&a[pc][jc]);

}

}

printf("\n\nPeople Vs Jobs\n");

for(pc=0;pc<people;pc++)

{

for(jc=0;jc<job;jc++)

{

printf("%d ",a[pc][jc]);

}

printf("\n");

}

printf("\n\nOutput\n");

for(pc=0;pc<people;pc++)

{

for(jc=0;jc<job;jc++)

{

if(a[pc][jc]==1)

{

if(flag==0)

{

flag=1;

printf("Person %d , Job %d , Allocated \n",pc+1,jc+1);

break;

}

else

{

jc++;

}

}

}

flag=0;

printf("\n");

}

}

Recent Posts

See All
Stack Using Queue

A stack can be implemented using two queues in C. The basic idea is to use one queue for enqueue operations and another for dequeue...

 
 
 
Queue Using Stack

A queue can be implemented using two stacks in C. The basic idea is to use one stack for enqueue operations and another for dequeue...

 
 
 
Queue Using Array

#include <stdio.h> #include<stdlib.h> #include<math.h> #define size 5 int queue[size]; int front = -1; int rear = -1; void enque(void);...

 
 
 

Kommentare


bottom of page