hello some doubts regarding seutid, below is its description, please throw some light on it. I'll mention my doubts in italics. NAME setuid - set user...
Mr.abhishek misra, Pls could you tell me from where you got a command to set the user id . I am a amateur in C++ programming and i do not command much strngth...
Hi favor... Can you please help doing my simple program in c the function. i got some code but i need to add something to get better grades. This is I want to...
Don't cross post! [cross-replied to save a lot of hassle for others to C-Prog, CProgramming(2) and Programmers-Town - not a member of compprogramming so...
... You don't create this function; it's provided by standard libraries, so you can USE it. That's a completely different story from CREATING a function. There...
Dear all, My program scenario is as follows. Three threads (thread 1-3) will fetch values from the ring buffer. E.g. after one thread gets one value from ring...
... <snip> This is the exact point of failure: you cannot unblock a thread from within itself while it's blocked. Look at it this way: if a thread is blocked,...
Hi Nico, Thanks for your reply. However, the thread function init() never be executed after the ResumeThread( Handle_1 ) is called, in the main(). Here,...
Dear Nico, Thanks for your reply and suggestions. They are really helpful. However, I met one further problem about resuming the thread. The thread function...
#include<stdio.h> #include<dos.h> #include<conio.h> void main() { int a; randomize(); a=random(10);//it will assign a random value betwwen 0-9 printf("%d"); ...
... <snip> Hi Luis, I think you're wrong. I don't know the thread library of Windows, but your code seems to execute the init() function only when a thread is ...
The purpose of this posting is to ask for your participation in a very short survey that gathers information on offshore software development efforts. It is a...
Dear Mr.Nico, As a part of Project I have been asked to interview(throught the net) some professional's in the field of software engineering. Could you please...
hy i can't find factorial.h in c all i have is : #ifndef _FACTORIAL_H 00048 #define _FACTORIAL_H 00049 00050 namespace Go { 00051 00055 00056 template<int N> ...
Hello Programmer, The International Institute of Information Technology, Hyderabad, India cordially invites you to be a part of Felicity, the annual cultural...
please what is factorial.h? is it header file describe in detail diana_cccc <no_reply@yahoogroups.com> wrote: hy i can't find factorial.h in c all i have is : ...
//how to use msgboxes #include<iostream.h> #include<shellapi.h> main() { if(MessageBox(NULL,"PRESS YES OR NO","MY MSG TITLE",MB_YESNO|MB_ICONQUESTION)==IDYES) ...
... I don't think this will work. Mixing stdio and Windows I/O is just not supposed to work together, as far as I know. You will have to use normal message...