Skip to content

Instantly share code, notes, and snippets.

@Jorvan758
Jorvan758 / TareaOp1_SO
Created May 1, 2019 01:11
Tarea con y sin paralelismo
#include <stdlib.h>
#include <stdio.h>
#include <pthread.h>
#include <semaphore.h>
typedef struct node{
int data;
struct node* next;
} node;