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

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

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 166 - 195 of 12634   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
166
Hi, I'm using MS Visual C++ 6.0, and I need help with the program I'm writing. I written the whole thing, but it doesn't really work right, so I need someone ...
Rayne
wu_weidong
Offline Send Email
Aug 3, 2003
9:07 am
167
MessageHello, Can anyone give idea about how to ftp to a remote proc with given IP addr & port number in 'c' for a given user name & password. Thanks in...
Ranjith T
ranjith@...
Send Email
Aug 4, 2003
11:37 am
168
MessageHai, more info regarding ftp. can anyone give how to pass data for the ftp> prompt from 'c' code. I am using solaris os. This will solve the problem. ...
Ranjith T
ranjith@...
Send Email
Aug 4, 2003
11:38 am
169
hi... may be i can help u out... but need to know more details what exactly u wanna do... are u willing to write a ftp code for your personel use? regards, ...
Puneet Gupta
puneetg123
Offline Send Email
Aug 4, 2003
3:17 pm
170
... hi if u can control the ftp client from shell prompt then run it as a shell command. -suman...
suman
suman_karumuri
Offline Send Email
Aug 5, 2003
6:45 am
171
Thank, but i got some other way to do it. let me try it. the ftp will look into default file .netrc for data if any, hence i can use it. Thanks ... From:...
Ranjith T
ranjith@...
Send Email
Aug 5, 2003
9:03 am
172
1. Find out if there's already any FTP library on your OS you can link your program to. This will make life easier, saving you fr5om writing an FTP...
Shantanu Kumar
shantanu_k06
Online Now Send Email
Aug 5, 2003
9:03 am
173
Thanks, but i got some other way to do it. let me try it. the ftp will look into default file .netrc for data if any, hence i can use it. Thanks ... From:...
Ranjith T
ranjith@...
Send Email
Aug 5, 2003
9:03 am
174
I'm working in sun/linux environment. The compilers I'm using are CC5.0/gcc2.95.2 on sun platform and gcc2.96 on linux. Using "pstack" system call I'm getting...
Manish Shroff
manish_shroffin
Offline Send Email
Aug 6, 2003
5:08 pm
175
Hai, Can anyone tell how to control the bit rate while ftp to remote??. I am using 'C' in solaris o.s. Thanks....
ranjith
ranjith@...
Send Email
Aug 8, 2003
2:43 pm
176
dear friends, i am writing a program which has connectivity to oracle. it is some sort of search program. What i am trying to do is Suppose i have following...
amit sharma
amit77una
Offline Send Email
Aug 8, 2003
3:14 pm
177
... Maybe putting a sufficiently long sleep() inside the bit-transfer loop! To slow the bit-rate down. ;-) Regards, Shantanu __________________________________...
Shantanu Kumar
shantanu_k06
Online Now Send Email
Aug 8, 2003
3:16 pm
178
hai.. can some one give me a link from where i could get a cpp compiler. bye ________________________________________________________________________ Send free...
nancy india
nancy_ind_tn
Offline Send Email
Aug 9, 2003
2:25 pm
179
What you want it ofcourse possible. I presume you intend to do this in C/C++. Please also mention which GUI platform you want to use. If it is GTK+, I may be...
Shantanu Kumar
shantanu_k06
Online Now Send Email
Aug 10, 2003
4:32 pm
180
... Depends on your need which compiler will be good enough. If you are using GNU/Linux or some version of UNIX, almost certainly you'd have a C/C++ compiler...
Shantanu Kumar
shantanu_k06
Online Now Send Email
Aug 10, 2003
4:32 pm
181
On Fri, 8 Aug 2003 20:06:20 +0100 (BST), nancy india ... visit www.gnu.org and search for g++ in the projects section. The GNU Development suite is widely...
Joe Steeve
joe_steeve_1981
Offline Send Email
Aug 11, 2003
8:57 am
182
... I came across the site http://thefreecountry.com where they have listed quite some compilers for C/C++. The following link may be of some help. ...
shantanu_k06
Online Now Send Email
Aug 13, 2003
3:01 pm
183
Does anyone know how to create web pages using C/C++ ? I would like to practice creating web pages C/C++.So far i using PHP to build web pages. Thanks -- ...
Muhammad Farhan
farhan@...
Send Email
Aug 15, 2003
8:03 pm
184
... CGI/C has been used in the past to do just that. You may like to google on them to find the details. Or, there's an interesting option if you like --...
Shantanu Kumar
shantanu_k06
Online Now Send Email
Aug 15, 2003
8:43 pm
185
hi can any one expln the below code in brief main() { int a[2][3][2]={{ {2,4},{7,8},{3,4} }, { {2,2},{2,3},{3,4}}}; printf("%u %u %u %d\n",a,*a, **a,***a); ...
suganthi rams
win_truth
Offline Send Email
Aug 18, 2003
2:35 pm
186
HI ALL, in the below code int main() { char s[5]; strcpy(s,"ABC"); printf("%d %d\n",strlen(s),sizeof(s)); o/p 3 5 } int main() { char s="ABC"; printf("%d...
suganthi rams
win_truth
Offline Send Email
Aug 18, 2003
2:35 pm
187
Dear All, The details of the requirement are as follows: Qualification: BE /BTech /MCA 1. Position: " SE0049 - Bluetooth " Minimum Experience in years: 3-5...
IFIL HR
rightopportu...
Offline Send Email
Aug 18, 2003
5:22 pm
188
... Trying to obtain strlen(s) when s is a char (not char[], mind you), should give you a runtime (pointer) error. Maybe a segmentation fault. strlen() is a...
Shantanu Kumar
shantanu_k06
Online Now Send Email
Aug 18, 2003
5:24 pm
189
... Hmm...pointer arithmetic! Let's dig: a => &a[0] *a => a[0] => &a[0][0] **a => a[0][0] => &a[0][0][0] ***a => a[0][0][0] (value 2) a+1 => &a[1] *a+1 =>...
Shantanu Kumar
shantanu_k06
Online Now Send Email
Aug 18, 2003
5:26 pm
190
Hi, To create a web-page using C/C++ or let be any language you will have to first send an appropriate header to the client ( BROWSER ). The header format for...
Navin
navinseshadri
Offline Send Email
Aug 18, 2003
5:58 pm
191
Hi There are cgi libraries to design web-page using c,or c++. You have to use cgi.c and flat.c to get advantage of template. You can generate dynamic html...
rizvan khan
rizz2005
Offline Send Email
Aug 19, 2003
11:03 am
192
Hi Ashwni, int main() { char s[5]; // Allocates 5 bytes for s strcpy(s,"ABC"); // Copies only 4 bytes to s ( 3 chars and 1...
Mallikarjuna C
c_mallircr
Offline Send Email
Aug 19, 2003
11:19 am
193
Hi suganthi, Buy "POINTERS IN C" by Y.C. Kanetkar you will understand the funda of double, triple and more than triple pointers relation with array. jateen ...
jateen bodkhe
jateen_b
Offline Send Email
Aug 19, 2003
11:36 am
194
In first case it is taking the size of arrray which is 5, whereas in second case it is taking the size of String which always terminates with a "\n" character...
Pankaj Panchal , Gurg...
PankajP@...
Send Email
Aug 19, 2003
3:58 pm
195
See comments embedded. ... From: Pankaj Panchal , Gurgaon [mailto:PankajP@...] Sent: Tuesday, August 19, 2003 07:41 To:...
Shyan Lam
sflam108
Offline Send Email
Aug 20, 2003
6:50 am
Messages 166 - 195 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