Dear friend, I suggest you to kindly enter your details in the group's database. Its available at the following link... ...
Programmers-Town@yaho...
Oct 1, 2006 12:16 pm
11122
Dear members , Our group's main motive is to sharing knowledge & experinces of each other, solving each others technical problem. Please follow the following...
Programmers-Town@yaho...
Oct 1, 2006 12:16 pm
11123
Hi all, In many C programs I see declarations like: uchar options[0]; Generally we use any array declaration which will a positive number as the size of the...
One of our clients, a major software company with 5,000+ customers worldwide and offices in Midtown Manhattan is on a a major hiring push. Following positions...
Daniel Frenkel
daniel.frenkel@...
Oct 2, 2006 6:58 am
11125
chk this formula:- let a and b be two no. a=a+b; b=a-b; a=a-b; That's it...
void swap(int a, int b) { a=a+b;//guess a=2, b=5 now a=2+5=7 b=a-b ;//Now b got 7-5=2 ,a's old value a=a-b ;//Now a became 7-2 =5, b's value } suraj_rao9...
Hi Sir, Thank you very much for your helping . I am trying to write a code that can read a specific range from text file .However , I found this code which is...
I dont quite understand what you're suggesting. Here's a brief example of my situation: #include <string> #include <iostream> #include <fstream> using...
hello , i inject a dll into a procees using (CreateRemoteThread) the dll instal a WH_CALLWNDPROC hook DWORD tr; tr =GetWindowThreadProcessId(a,&lp); hook=...
Hi All, I am really looking for your valuable inputs as I could not get much help from Google; Regards, Smitha. smitha choudry <rush2smitha@...> wrote: ...
I am a beginner to C++, and in one of my primers, I saw the following code fragment: cout.setf(ios::boolalpha) It then explained what that did. What it didn't...
I'm teaching myself Visual C++ with: SAMS Teach Yourself Visual C++ 6 in 21 Days, and I'm working on the sample Socket project starting on page 495. I've...
Are you using ANSI C++ or some GUI based IDE (such as VSC++)? Jordan Programming Forum <http://forum.codecall.net> ... [Non-text portions of this message have...
I have planned to start new project in the field of intrusion detection. It is window base project, which effectively detect intrusion in the windows platform....
Hi the program is: void main() { int num1,num2; printf("Enter the values"); scanf("%d%d",&num1,&um2); num1=num1+num2; num2=num1-num2; num1=num1-num2; //Now you...
We want a perl script or C program which will be useful to identify the file is whether under usage or not. It will be a great help. Thanks, Regards, ITB...
I have planned to start new project in the field of intrusion detection. It is window base project, which effectively detect intrusion in the windows platform....
Hello friends, By reading book I have made this understanding that, if I am passing any object of a class as a parameter to any function by value, a temp copy...
i am trying to much about this dangling pointers.i have gone through many sources,but i didn't feel happy with the little description of these dangling...
Try this, Suppose u want to swap a n b use these statements in your program... a = a+b; b = a-b; a = a-b; OR a = a*b b = a/b a = a/b Ok... bye 4 now... Paul...
Hello guys, I am facing one problem...! I am trying to debug using DEV C++. I think it uses gdb... Guys, while debugging I am facing one problem.. i.e. I am...
Hello guys, I am facing one problem...! I am trying to debug using DEV C++. I think it uses gdb... Guys, while debugging I am facing one problem.. i.e. I am...