/* * @@name: ordered.1c * @@type: C * @@compilable: yes * @@linkable: yes * @@expect: success */ #include void work(int k) { #pragma omp ordered printf(" %d\n", k); } void ordered_example(int lb, int ub, int stride) { int i; #pragma omp parallel for ordered schedule(dynamic) for (i=lb; i