You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
249 B
C

#include <stdio.h>
#include <omp.h>
int main(void) {
printf("¡Holas generales!\n");
printf("Hilos: %d\n", omp_get_max_threads());
#pragma omp parallel
printf("¡Hola desde el hilo %d!\n", omp_get_thread_num());
return 0;
}