Search:

Type: Posts; User: marla

Search: Search took 0.01 seconds; generated 38 minute(s) ago.

  1. Thread: argc/v question?

    by marla
    Replies
    6
    Views
    1,336

    int main(int argc, char *argv[]) { // make...

    int main(int argc, char *argv[])
    {
    // make sure that there is at least 1 argument
    if (argc < 2) {
    usage();
    }
    if (*argv[0] == "-i") {
    i();
    }
    else if (*argv[0] == "-h") {
  2. Thread: argc/v question?

    by marla
    Replies
    6
    Views
    1,336

    argc/v question?

    here is my partial code:



    int main(int argc, char *argv[])
    {

    // make sure that there is at least 1 argument
    if (argc < 2) {
    usage();
  3. Thread: FILE error

    by marla
    Replies
    3
    Views
    6,191

    may you live long and prosper, get high paying it...

    may you live long and prosper, get high paying it jobs, and ... and get laid alot. thanks for the help, it was very vexing.
  4. Thread: FILE error

    by marla
    Replies
    3
    Views
    6,191

    FILE error

    void writePortOpen(int wPort, char wBanner[100]) {
    char portFileName[16];
    sprintf(portFileName, "port%s.txt", wPort);
    FILE *portFilePointer = &portFileName;...
  5. Thread: newb to winsock

    by marla
    Replies
    3
    Views
    1,917

    newb to winsock

    im coming from python and using a language which is crossplatform and no differentiation between socket usage.

    i just learned ansi c, now i am trying to write my first real application. theres no...
Results 1 to 5 of 5