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

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

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 1304 - 1333 of 12634   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1304
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
Mar 1, 2004
9:37 am
1305
hello everybody I have some Problem. I want to develop an application which will run an .exe application in the background (in hiddn-mode) For that I've...
satish waghmare
waghmare_satish
Offline Send Email
Mar 2, 2004
5:03 am
1306
Dear Members, I'm an MCA student. It's the time for our course project. Can you suggest me some good project idea. I prefer something that can be done with...
Habeeb Rahman
habeeb@...
Send Email
Mar 2, 2004
5:03 am
1307
Hi You can download GCC compiler from the site given below, this works in DOS/Win environment, and also comes with an IDE called RHIDE ...
Ankur
ankur2130
Offline Send Email
Mar 2, 2004
5:04 am
1308
Hello all, I'm the new guy here and need some help for a friend's Challenge to me. I'm a beginner with C++ and do not fully understand what is required from...
johnnys123@...
johnnys123
Offline Send Email
Mar 2, 2004
5:04 am
1309
hello everyone, I'm a newbie in using visual studio 6. Whenver i compile a program in vc++ in windows xp, i get the error: error spawning c1.exe whats the...
infinitecmdz
Offline Send Email
Mar 2, 2004
5:04 am
1310
Hi Deepak, If i'm not wrong, you want to be able to program C/C++ while using Windows and not linux. However your files should remain on the remote linux...
Sumit Kumar
bonifarms
Offline Send Email
Mar 2, 2004
5:06 am
1311
hi friends, i have a doubt in accessing the harddisk contents using C program. any one please help me to get me more comfort in C programming. please send me...
vaithi_m125
Offline Send Email
Mar 2, 2004
5:07 am
1312
Hello Programmers, I am trying to learn more about C++ Programming because I am a recruiter and we see a lot of positions for this skill. I wanted to both...
Jeff Green
jeffgreenseti
Offline Send Email
Mar 2, 2004
5:07 am
1313
can anybody give me some c projects so that i can do & put in my resume i want detailed synopsis __________________________________ Do you Yahoo!? Get better...
santosh gs
santu_gs
Offline Send Email
Mar 2, 2004
5:08 am
1314
FYI :) Hello all, We are students from Department of CSE, Thiagarajar college of Engineering, Madurai, Tamil Nadu, India. We are conducting an online...
Joe Steeve
joe_steeve_1981
Offline Send Email
Mar 2, 2004
1:06 pm
1315
From: "vaithi_m125" <vaithi_m125@...> Date: Mon, 01 Mar 2004 06:14:02 -0000 ... put some code of yours to start with., lets see it grow on the list....
Joe Steeve
joe_steeve_1981
Offline Send Email
Mar 3, 2004
12:10 pm
1316
From the knowledge base of Microsoft: The information in this article applies to: The Microsoft C/C++ Compiler (CL.EXE) Microsoft C for MS-DOS, version 6.0a ...
Gubba, Balakrishna
balagubba
Offline Send Email
Mar 5, 2004
11:41 am
1317
Hello jonny, Ur friend is tricky person. He has given just a factorial program. i will tell u the tricky part later. The factorial for 5 is 1 * 2 * 3 * 4 * 5 ...
Muthalagu, Vaithiyali...
Vaithiyalingam_Muthal...
Send Email
Mar 5, 2004
11:56 am
1318
... This function returns the factorial of a number. If the number is less than 1 then the output is always 1 because of the condition if ( number <= 1 ) ...
vimil@...
Send Email
Mar 5, 2004
12:07 pm
1319
You did not mentioned your OS, I assume it is Windows.... Lookup CreateProcess() API. One of the arguments is a pointer to a STARTUPINFO structure. There are...
Shyan Lam
sflam108
Offline Send Email
Mar 5, 2004
12:08 pm
1320
============================================================ This question was asked in an aptitude test of Intel. int i, n = 20; for (i = 0; i < n; i--) ...
Pankaj Panchal , Gurg...
PankajP@...
Send Email
Mar 5, 2004
12:08 pm
1321
Hello friends, I am a new member to this group.Would you guide me towards programming the parallel ports using c++ languages.I would be obliged if certain...
prat_16_2001
Offline Send Email
Mar 5, 2004
12:09 pm
1322
Joe Steeve <joe_clubs@...> wrote: what's the problem please elaborate a bit on it From: "vaithi_m125" Date: Mon, 01 Mar 2004 06:14:02 -0000 ... put some...
deo sharma
deo31
Offline Send Email
Mar 5, 2004
12:10 pm
1323
I guess there are three possible ways to do this. change condition as followed. give 1 n = -20 instead of n = 20. 2 i < 0 instead of i = 0. 3 i <...
More, Anand (IE03)
MoreA@...
Send Email
Mar 5, 2004
12:54 pm
1324
Hi I could able to find 2 1) n-- instead of i-- 2) i+n instead of i<n thanks vamshi ... From: More, Anand (IE03) [ mailto:MoreA@... ...
Krishna, Vamshi
vamshi_krishna@...
Send Email
Mar 5, 2004
3:11 pm
1325
Hi, I'm sorry, but I couldn't find any of the solutions working. You are missing that there should be a change of one character only. Please consider this: ...
Rakesh Kumar - Softwa...
rkumar107_hcl
Offline Send Email
Mar 5, 2004
3:46 pm
1326
I think this is easy try these 1) int i, n = 20; for (i = 20; i < n; i--) printf("-"); /* I have added 2 in front of 0 2) int i, n = 20; for (i = 0; i < n;...
tarun kumar
tarun_kumar007
Offline Send Email
Mar 11, 2004
12:55 pm
1327
Hi, I would like to know how to compile a user defined function seperately without adding main function to the file. Later, the seperate files can be linked to...
magnesia_in
Offline Send Email
Mar 11, 2004
12:59 pm
1328
Can someone help me with this one?... I'm really having a hard time when it comes to functions and arrays... Plsss... this is urgent.. I would really...
lithium868
Offline Send Email
Mar 11, 2004
12:59 pm
1329
hi friends, this is my first mail to this group........ I've a query....... Is it possible to write a function for swapping without using temporary...
raghu_cs03
Offline Send Email
Mar 11, 2004
1:01 pm
1330
I invite everyone interested in C++ and the power and versatility it provides to check out Ultimate++ at http://www.ntllib.org/upp/index.html Ultimate++ is...
neorage_x09
Offline Send Email
Mar 11, 2004
1:02 pm
1331
I guess, following thing will also work for (i = 0; i < n; n--) Regards Rupali ... From: More, Anand (IE03) [mailto:MoreA@...] Sent: Friday,...
Rupali Tamhane
rupalit@...
Send Email
Mar 11, 2004
1:03 pm
1332
third one is here: int i, n = 20; for (i = 0; -i < n; i--) printf("-\n"); ... From: Krishna, Vamshi [mailto:vamshi_krishna@...] Sent: Friday, March 05,...
Gubba, Balakrishna
balagubba
Offline Send Email
Mar 11, 2004
1:04 pm
1333
Hi Friends, I am new to this group. I need multiple choice tricky questions in C and C++ i.e objective questions with multiple choices but only one correct...
simran_jhansi
Offline Send Email
Mar 11, 2004
1:04 pm
Messages 1304 - 1333 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