- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 2
- Posts with Downvotes
- 2
- Downvoting Members
- 2
4 Posted Topics
hi all, i need to know how to create a thread using pthread_create()? i have never used pthread in c. am i supposed to used function pointer? how to pass arguments in thread function? i need to know everything about pthread_create(). and yes i am using turbo c++ compiler and … | |
hello, i have a problem in understanding time complexity. i know that if we are having on for loop. for e.g. [code]for(int i=0.i<n;i++) { } then my time complexity will be O(n). And if i nest two for loops ,like this for (int i=0;i<n-1;i++) { for(int j=i;j<n;j++) { } }[/code] … | |
hi, i want to solve 3 equations, which has 3 unknowns like this: a x1^2 + bx1 + c = y1 a x2^2 + bx2 + c = y2 a x3^2 + bx3 + c = y3 can anybody suggest mw how can i do it in C? i tried … | |
hello, i want to pass an array and 2 more integer elements in the routine of thread in pthread in c. i know i need to use structure for the same. i am using pointer to that structure in this case. i need to know--- what will happen if i … |
The End.