... with ... simplest, ... have ... Thanks, I'll look into the TCP/IP option since I just want basic functionality. Now you introduced a new variable which is...
64400
Nico Heinze
nico_heinze
Nov 1, 2007 1:29 pm
... I dare to disagree. RPCs are still in heavy use, and because they don't force you to deal with authentication mechanisms and security issues on a higher...
64401
Brett McCoy
smartandkewl
Nov 1, 2007 1:33 pm
... I don't know if this is applicable to what you are doing, but you can use Expect to remotely control another machine... you can tunnel it through SSH for...
64402
xiaoxinchen1989
xiaoxinchen1989@...
Nov 1, 2007 2:07 pm
Hello! I am a c programe learner, I am look for a test web which can offer some problem and the data! Thank all! [Non-text portions of this message have been...
64403
이도형
daojiong77@...
Nov 1, 2007 4:17 pm
Hello ~~~~! Nice to meet everyone! (in korean windows backslash=92;) I know in printf("\n"); printf("\b"); printf("\t"); \n is new line \b is backspace \t is...
64404
Brett McCoy
smartandkewl
Nov 1, 2007 4:24 pm
... There isn't a character for going to the previous line, at least not for what your are trying to do. You'd have to create a line buffer (like a linked...
64405
xiaoxinchen1989
xiaoxinchen1989@...
Nov 1, 2007 6:46 pm
Hello all! This one of my programe, when it is running, a warning that" 0xC00000FD: Stack overflow"!Can you help me!Thank you! #include "stdafx.h" ...
64406
mano M
blaunche
Nov 2, 2007 12:05 am
Hi, I am reading bulk of data and writing into a file in binary format using fwrite().I like to create new line after writing each structure. How can I do it. ...
64407
Brett McCoy
smartandkewl
Nov 2, 2007 12:15 am
... Are the structures all binary data? Are you creating fixed length records? If so, why do you need the newline at the end of each record? If not, write the...
64408
Wang Jun
wjangelwj
Nov 2, 2007 11:52 am
I think it is better if you can state what your code is trying to do. make a better alignment and add some comment. I have done some changes based on your...
64409
desaiasit
Nov 2, 2007 12:02 pm
Try out http://www.devsquare.com ... offer some problem and the data!...
64410
senthilcom
Nov 2, 2007 1:50 pm
[Owner/Mod: Before deciding to submit your programs to this person, think about the future. What will happen when you solely rely on this person to do your...
64411
Thomas Hruska
shininglightpro
Nov 2, 2007 1:53 pm
... Attachments are not allowed on this forum. Just post the code in the message. -- Thomas Hruska CubicleSoft President Ph: 517-803-4197 *NEW* MyTaskFocus...
64412
Thomas Hruska
shininglightpro
Nov 2, 2007 2:01 pm
... I just checked this site out. The problem set isn't the greatest but the interface seems fairly nice (code, compile, and run all inside a web browser)....
64413
Haohao
haohaotch
Nov 2, 2007 2:29 pm
hello! I'm new to C programming.And I've got to make an adder with numbers beyond the integer storage limits.My program can excute successfully on VC.But it...
64414
wang jun
wjangelwj
Nov 2, 2007 4:14 pm
#include<stdio.h> #include<stdlib.h> #include<time.h> int main() { int s1[101]={0}; int s2[101]={0}; int i,j,r; srand(time(NULL)); int n1,n2; n1=rand() %...
64415
Haohao
haohaotch@...
Nov 2, 2007 5:09 pm
hello! I'm new to C programming.And I've got to make an adder with numbers beyond the integer storage limits.My program can excute successfully on VC.But it...
64416
haohaotch@...
Nov 2, 2007 5:09 pm
hello! I'm new to C programming.And I've got to make an adder with numbers beyond the integer storage limits.My program can excute successfully on VC.But it...
64417
debasish deka
debasish_deka
Nov 2, 2007 5:30 pm
Hello all, Recently I read in some topic about C99 - modifications to ANSI C. That it had facility for runtime varying array compatibility. So I tried this...
64418
Brett McCoy
smartandkewl
Nov 2, 2007 6:10 pm
... DevC++ uses gcc underneath (mingw), so you'd need to see what gcc supports for C99: http://gcc.gnu.org/c99status.html -- Brett ... "In the rhythm of music...
64419
s b
suge.knight
Nov 2, 2007 8:24 pm
i need a c compiler 2 download __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection...
64420
Thomas Hruska
shininglightpro
Nov 3, 2007 1:08 am
... Did you read the group welcome message that you received when you joined the group? It contains all sorts of useful information on how to get started. ...
64421
wang jun
wjangelwj
Nov 3, 2007 3:28 am
Hi Debasish, I am using gcc in ubuntu. once I remove n in the arr[ n ] int arr[ ] = { 1, 2, 3, 4, 5 } it complies without warning. Or int arr[ 6 ] = { 1, 2, 3,...
64422
Nico Heinze
nico_heinze
Nov 3, 2007 9:48 am
... Usually compilers will give warnings when using "advanced" features. Have you invoked the compiler with the necessary compiler options to turn off warnings...
64423
lwangys
Nov 3, 2007 12:22 pm
I am learning C programinglanguage.What is the different between %c and %s? ... @yahoo.cn ע [Non-text...
64424
Brett McCoy
smartandkewl
Nov 3, 2007 12:31 pm
... I assume you are talking the format specifiers in the printf family of functions... %c = print a single char %s = print a string -- Brett ... "In the...
64425
krishnaprasadv88
krishnaprasa...
Nov 3, 2007 1:01 pm
Hi, When you calculate the sum of each of the digits, you have not given a provision for having a sum that is of 2 digits.i.e., while adding 12345 and 98764,...
64426
bupt_softwar...
Nov 3, 2007 2:11 pm
int atoi (const char *nPtr) This function change "*nPtr" into a int, and return this int. ... #include<stdio.h> #include<stdlib.h> int main(){ char...
64427
Brett McCoy
smartandkewl
Nov 3, 2007 3:47 pm
... Copy the individual elements of the string to a temp char and then convert, as in this example: int len = strlen(string); char temp; for (int i = 0; i <...
64428
Thomas Hruska
shininglightpro
Nov 3, 2007 4:17 pm
... Haven't had your morning coffee yet? -- Thomas Hruska CubicleSoft President Ph: 517-803-4197 *NEW* MyTaskFocus 1.1 Get on task. Stay on task. ...