Search the web
Sign In
New User? Sign Up
Programmers-Town
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 11121 - 11150 of 12634   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
11121
Dear friend, I suggest you to kindly enter your details in the group's database. Its available at the following link... ...
Programmers-Town@yaho...
Send Email
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...
Send Email
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...
smitha choudry
rush2smitha
Offline Send Email
Oct 2, 2006
6:57 am
11124
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@...
Send Email
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...
ashutosh_suri
Online Now Send Email
Oct 2, 2006
7:00 am
11126
a = a + b; b = a-b; a = a-b; print both numbers u will get ur result suraj_rao9 <suraj_rao9@...> wrote: Hi Members, How to swap 2 numbers with out...
Sangeeta Shende
sangeetashende
Offline Send Email
Oct 2, 2006
7:01 am
11127
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...
M, Ali
brushnam
Offline Send Email
Oct 2, 2006
7:07 am
11128
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...
Mahmud Hadi El-werfelli
mahmud890
Offline Send Email
Oct 2, 2006
7:28 am
11129
Hi Paul, Please find the solution below: a = 10 ; b = 20 ; a = a + b ; b = a - b ; a = a - b ; Thanx...
Prahlad Singh
ps_prahalad
Offline Send Email
Oct 2, 2006
7:32 am
11130
I dont quite understand what you're suggesting. Here's a brief example of my situation: #include <string> #include <iostream> #include <fstream> using...
L-O-G
a_logeot
Offline Send Email
Oct 2, 2006
7:32 am
11131
hello , i inject a dll into a procees using (CreateRemoteThread) the dll instal a WH_CALLWNDPROC hook DWORD tr; tr =GetWindowThreadProcessId(a,&lp); hook=...
avesta_4266
Offline Send Email
Oct 2, 2006
7:36 am
11132
You can use any of the logic a=a+b; b=a-b; a=a-b; OR a^=b^=a^=b; Manas...
manasghosh_rcciit
manasghosh_r...
Offline Send Email
Oct 2, 2006
7:40 am
11133
... c code: void swap(int *a,int *b) { a=a+b; b=a-b; a=a-b; } or a=a^b; b=a^b; a=a^b; in the same function ; ...
tanny mande
tanthegamer
Offline Send Email
Oct 2, 2006
8:00 am
11134
its simple yar let a=4,b=3; a=a+b;a=7,b=3 b=a-b;a=7,b=4; a=a-b;a=3,b=4 ok bye Paul Herring <pauljherring@...> wrote: ... ...
siva rama
pushpala_mca...
Online Now Send Email
Oct 2, 2006
8:03 am
11135
... the answer is ... b=a-b; a=a-b;...
pushpala_mca2006
pushpala_mca...
Online Now Send Email
Oct 2, 2006
8:04 am
11136
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: ...
smitha choudry
rush2smitha
Offline Send Email
Oct 2, 2006
8:05 am
11137
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...
heckler0077
Offline Send Email
Oct 2, 2006
8:06 am
11138
That's the logic for 2 nos a and b!!! a=a+b; b=a-b; a=a-b; ... [Non-text portions of this message have been removed]...
Bobby
email2babul
Offline Send Email
Oct 2, 2006
8:06 am
11139
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...
dracco555
Offline Send Email
Oct 2, 2006
8:07 am
11140
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...
jdelozier82
Offline Send Email
Oct 2, 2006
8:07 am
11141
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....
harendra bisht
harendra.nsit
Offline Send Email
Oct 2, 2006
8:09 am
11142
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...
payal minocha
payal_minoch...
Offline Send Email
Oct 2, 2006
8:09 am
11143
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...
indiantechbrain
Offline Send Email
Oct 2, 2006
8:09 am
11144
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....
harendra.nsit
Offline Send Email
Oct 2, 2006
8:12 am
11145
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...
Nitin Dubey
see_nits
Offline Send Email
Oct 2, 2006
8:13 am
11146
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...
ashes_wini
Offline Send Email
Oct 2, 2006
8:13 am
11147
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...
Vishwanath Savakar
c_low_bvb
Offline Send Email
Oct 2, 2006
8:13 am
11148
hii every body i need t kwow how i can improve my programming skills can any body suggest any thing plezzzzz help me i need it????????...
abhishek0511
Offline Send Email
Oct 2, 2006
8:21 am
11149
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...
Ashwin Mittal
ashwin_mittal26
Offline Send Email
Oct 2, 2006
8:22 am
11150
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...
Ashwin Mittal
ashwin_mittal26
Offline Send Email
Oct 2, 2006
8:44 am
Messages 11121 - 11150 of 12634   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help