Os 9
Os 9
9 TO IMPLEMENT THREADING
PROGRAM:
#include <stdio.h>
#include <pthread.h>
#define MAX 10
int main() {
pthread_t thread1, thread2;
pthread_join(thread1, NULL);
pthread_join(thread2, NULL);