User profile: istemihan

User info
User name:istemihan
Name:Alper Ozel
Location:Istanbul
Website:http://ibelieveinelectron.com
Bio:I am an engineer, love phsics, electronics, computer science and music!
History
Joined:
Number of posts:45
Latest posts:

How to control the function parameters via macro definitions?
Hi, for a project, I need to use 3 different size arrays and matrices. Actually, the project is a ho...

what is wrong with my output?
You need to be more specific and should give details about the problem. Also, you should share all t...

vector keeps different elements inside and outside of the function. Why?
I am trying to solve euler question 419 (source: https://projecteuler.net/problem=419) I am keeping...

omp barrier improperly nested in a work-sharing construct
[code]#include <stdio.h> #include<array> #include<vector> #include <omp.h> #include <algorithm> std...

OpenMP: ideal way to use a shared vector
I need to write a prime number generator function with multi-thread. Here is my code below: [code] ...