cilk int fib(int n) {
if (n < 2) return n;
int x = cilk_spawn fib(n-1);
int y = fib(n-2);
cilk_sync;
return x + y;
}
cilk int fib(int n) {
if (n < 2) return n;
int x = cilk_spawn fib(n-1);
int y = fib(n-2);
cilk_sync;
return x + y;
}
cilk int main() {
cilk_for (int i = 0; i < 5; i++) {
printf("%d\n", i);
}
return 0;
}
cilk void array_sum(int* arr, int n) {
int sum = 0;
cilk_for (int i = 0; i < n; i++) {
sum += arr[i];
}
printf("Sum: %d\n", sum);
}
cilk int main() {
cilk_spawn printf("Hello, ");
printf("world!\n");
cilk_sync;
return 0;
}
Back-end App Developer
Front-end Web Developer
Full Stack Developer (Java)
Full Stack Developer (.Net)
Full Stack Developer (MEAN)
Full Stack Developer (MERN)
DevOps Engineer
Database Engineer (AzureSQL)
Database Engineer (Oracle)
Database Engineer (General)
Solution Architect (.NET)
Solution Architect (Java)
Solution Architect (Ruby)
Solution Architect (Python)
AI Engineer (Python)
Sr. AI Engineer (Python)
AI Strategist (Python)
Business Intelligence Engineer
Systems Analyst
Mainframe Developer (COBOL)
Mainframe Developer (General)