... 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...
... 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...
... 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...
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...
xiaoxinchen1989
xiaoxinchen1989@...
Nov 1, 2007 2:07 pm
64403
Hello ~~~~! Nice to meet everyone! (in korean windows backslash=\) I know in printf("\n"); printf("\b"); printf("\t"); \n is new line \b is backspace \t is...
이도형
daojiong77@...
Nov 1, 2007 4:17 pm
64404
... 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...
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" ...
xiaoxinchen1989
xiaoxinchen1989@...
Nov 1, 2007 6:46 pm
64406
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. ...
... 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...
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...
[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...
... Attachments are not allowed on this forum. Just post the code in the message. -- Thomas Hruska CubicleSoft President Ph: 517-803-4197 *NEW* MyTaskFocus...
... 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)....
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...
#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() %...
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...
Haohao
haohaotch@...
Nov 2, 2007 5:09 pm
64416
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...
haohaotch@...
Nov 2, 2007 5:09 pm
64417
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...
... 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...
i need a c compiler 2 download __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection...
... 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. ...
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,...
... Usually compilers will give warnings when using "advanced" features. Have you invoked the compiler with the necessary compiler options to turn off warnings...
... 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...
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,...
... 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 <...