Hi,
I'm definitely not an expert... yet.
trying to write a little app(daemon?) to run in the background, to grab my internet ip address and ftp it to an html page.
i can do it by using dos...
http://www.experts-exchange.com/Programming/Languages/C/Q_20415980.html
Zones:
CDate Answered: 12/06/2002 Grade: B Views: 5
My question is based on the ANSI C grammar on the website listed below:
http://www.lysator.liu.se/c/ANSI-C-grammar-y.html
Do you think a construct like
if(a>0)
{
case 0: printf("...
http://www.experts-exchange.com/Programming/Languages/C/Q_20914822.html
Zones:
CDate Answered: 06/16/2004 Grade: A Views: 0
Hello
I have a directory with log files, I want to be able to delete all log files that are older than seven days.
I am having problems implementing this, especially since I cannot use any MF...
http://www.experts-exchange.com/Programming/Languages/C/Q_21634604.html
Zones:
CDate Answered: 12/07/2005 Grade: A Views: 0
why we say ANSI C must support lines of at least 254 characters
http://www.experts-exchange.com/Programming/Languages/CPP/Q_23018897.html
Zones:
C++,
CDate Answered: 12/12/2007 Grade: A Views: 0
Hi,
I had a good working program, what it did was reading a message from a unix queue, forking a process, in the child process execute an ftp script, and in the parent process waiting for the pr...
http://www.experts-exchange.com/Programming/Languages/C/Q_23550166.html
Hi,
I'm just reviewing the ANSI C date and time functions and was wondering how to do datetime caculations. I have a flat text text file which stores the start date, start time and end date and...
http://www.experts-exchange.com/Programming/Languages/C/Q_23659160.html
Zones:
C,
C++Date Answered: 08/19/2008 Grade: A Views: 9
I have an apllication that uses sprintf to convert a float to a string, which is then written to a database record.
before this application was first modified to do this it ran about one hour, af...
http://www.experts-exchange.com/Programming/Languages/C/Q_20026750.html
char oneString[1024];
char *textPtr = "This is a test of sprintf ( )";
long normalTextLen = 14;
long totalLen;
Instead of doing the following tasks in three lines:
strncpy(oneString, textP...
http://www.experts-exchange.com/Programming/Languages/C/Q_21569757.html
Zones:
CDate Answered: 01/04/2006 Grade: A Views: 0
Hello there,
i've written this small client in perl which does exactly what i want:
#!/usr/bin/perl -w
require 5.002;
use Socket;
use strict;
my ($rendezvous,$line,$kidpid,$file);
$file=...
http://www.experts-exchange.com/Programming/Processor_Platforms/Q_21036962.html
I'm wondering if there's a way to copy files in C++ using string variables. ALSO, the file paths/names may have spaces.
For example, let's say this C++ app is going through a list of recently mo...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_23113993.html
Zones:
C++Date Answered: 01/26/2008 Grade: A Views: 158