Run Code
|
API
|
Code Wall
|
Users
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
1.9 Time Function
#include <stdio.h> #include <omp.h> int main() { int i, j=0; float start,end; start = omp_get_wtime(); #pragma omp parallel for for (i=0; i < 80000; i++) { j+=i; } end = omp_get_wtime(); printf("Time taken: %lf\n", end - start); return 0; }
run
|
edit
|
history
|
help
0
Please
log in
to post a comment.
PJE
strend
Lab 9 v0.6
Text to ASCII (top)
IndiSelSort
holiwis
fgets and basic string manipulation
Project 3 Part 1 v1.1
Witout goto
método de ordenamiento insertion sort
Please log in to post a comment.