Herzlich Willkommen, lieber Gast!
  Sie befinden sich hier:

  Forum » Rätselecke » 2*5*5. Virtualrästel: Forum Wurm:

Forum | Hilfe | Team | Links | Impressum | > Suche < | Mitglieder | Registrieren | Einloggen
  Quicklinks: MSDN-Online || STL || clib Reference Grundlagen || Literatur || E-Books || Zubehör || > F.A.Q. < || Downloads   

Autor Thread - Seiten: [ 1 ] > 2 < [ 3 ] [ 4 ]
010
25.09.2003, 12:02 Uhr
0xdeadbeef
Gott
(Operator)



C++:
struct {
    int count;
    char **data;
} param_info;

#include <stdio.h>

void s(const char* a, const char* b)
{
    char buf[1024];
    sprintf(buf, "%s %s", a, b);
}

int main(int argc, char** argv)
{
    for(int i = 1; i < argc; ++i)
    {
        s(argv[0], argv[ i ]);
        if (i<argc-1)
        {
            s(argv[ i ], argv[ i+1 ]);
        }
    }
}


--
Einfachheit ist Voraussetzung für Zuverlässigkeit.
-- Edsger Wybe Dijkstra
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
011
25.09.2003, 12:39 Uhr
virtual
Sexiest Bit alive
(Operator)



C++:
struct {
    int count;
    char **data;
} param_info;

#include <stdio.h>

void s(const char* a, const char* b)
{
    char buf[1024];
    sprintf(buf, "%s %s", a, b);
    for(int i=0; i<strlen(buf); ++i)
    {
    }
}

int main(int argc, char** argv)
{
    for(int i = 1; i < argc; ++i)
    {
        s(argv[0], argv[ i ]);
        if (i<argc-1)
        {
            s(argv[ i ], argv[ i+1 ]);
        }
    }
}


--
Gruß, virtual
Quote of the Month
Ich eß' nur was ein Gesicht hat (Creme 21)

Dieser Post wurde am 25.09.2003 um 12:40 Uhr von virtual editiert.
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
012
25.09.2003, 13:57 Uhr
Pablo
Supertux
(Operator)



C++:
struct {
    int count;
    char **data;
} param_info;

#include <stdio.h>

void s(const char* a, const char* b)
{
    char buf[1024];
    struct param_info info;
    sprintf(buf, "%s %s", a, b);
    for(int i=0; i<strlen(buf); ++i)
    {
    }
}

int main(int argc, char** argv)
{
    for(int i = 1; i < argc; ++i)
    {
        s(argv[0], argv[ i ]);
        if (i<argc-1)
        {
            s(argv[ i ], argv[ i+1 ]);
        }
    }
}


--
A! Elbereth Gilthoniel!
silivren penna míriel
o menel aglar elenath,
Gilthoniel, A! Elbereth!
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
013
25.09.2003, 14:03 Uhr
0xdeadbeef
Gott
(Operator)


Pablo: param_info ist ne Variable, kein Typ.
virtual: Ts, ts. strlen benutzen, aber string.h nicht includen...

C++:
struct {
    int count;
    char **data;
} param_info;

#include <stdio.h>
#include <string.h> /* <-- bugfix */

void s(const char* a, const char* b)
{
    char buf[1024];
    sprintf(buf, "%s %s", a, b);
    for(int i=0; i<strlen(buf); ++i)
    {
    }
}

int main(int argc, char** argv)
{
    param_info.count = argc;
    for(int i = 1; i < argc; ++i)
    {
        s(argv[0], argv[ i ]);
        if (i<argc-1)
        {
            s(argv[ i ], argv[ i+1 ]);
        }
    }
}


--
Einfachheit ist Voraussetzung für Zuverlässigkeit.
-- Edsger Wybe Dijkstra
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
014
25.09.2003, 14:22 Uhr
Pablo
Supertux
(Operator)


Ach klar, stimmt, ich hab mit typdef struct verwechselt
--
A! Elbereth Gilthoniel!
silivren penna míriel
o menel aglar elenath,
Gilthoniel, A! Elbereth!
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
015
25.09.2003, 14:25 Uhr
virtual
Sexiest Bit alive
(Operator)


Darf ich weiter machen?

C++:
struct {
    int count;
    char **data;
} param_info;

#include <stdio.h>
#include <string.h> /* <-- bugfix */

void s(const char* a, const char* b)
{
    char buf[1024];
    sprintf(buf, "%s %s", a, b);
    for(int i=0; i<strlen(buf); ++i)
    {
        if (param_info.data)
        {
        }else
        {
        }
    }
}

int main(int argc, char** argv)
{
    param_info.count = argc;
    for(int i = 1; i < argc; ++i)
    {
        s(argv[0], argv[ i ]);
        if (i<argc-1)
        {
            s(argv[ i ], argv[ i+1 ]);
        }
    }
}


--
Gruß, virtual
Quote of the Month
Ich eß' nur was ein Gesicht hat (Creme 21)
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
016
25.09.2003, 14:29 Uhr
virtual
Sexiest Bit alive
(Operator)


@beefy: Ist noch alles c89
--
Gruß, virtual
Quote of the Month
Ich eß' nur was ein Gesicht hat (Creme 21)
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
017
25.09.2003, 14:35 Uhr
0xdeadbeef
Gott
(Operator)


Das ist nicht wahr, wie dir dein gcc sicher bestätigen wird.

C++:
for(int i; ...


ist in C89 nicht erlaubt. Aber zurück zum Programm:

C++:
struct {
    int count;
    char **data;
} param_info;

#include <stdio.h>
#include <string.h> /* <-- bugfix */

void s(const char* a, const char* b)
{
    char buf[1024];
    sprintf(buf, "%s %s", a, b);
    for(int i=0; i<strlen(buf); ++i)
    {
        if (param_info.data)
        {
        }else
        {
        }
    }
}

int main(int argc, char** argv)
{
    param_info.count = argc;
    param_info.data = argv;
    for(int i = 1; i < argc; ++i)
    {
        s(argv[0], argv[ i ]);
        if (i<argc-1)
        {
            s(argv[ i ], argv[ i+1 ]);
        }
    }
}


--
Einfachheit ist Voraussetzung für Zuverlässigkeit.
-- Edsger Wybe Dijkstra
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
018
25.09.2003, 14:48 Uhr
virtual
Sexiest Bit alive
(Operator)


Geil. Zwei Köche, eine Suppe! - Wir brauchen mehr Köche!
Naja, damit das ding auch mal was ausgibt und wir ja schon mal einen einblick in die zu erwartende Qualität bekommen haben:

C++:
struct {
    int count;
    char **data;
} param_info;

#include <stdio.h>
#include <string.h> /* <-- bugfix */

void s(const char* a, const char* b)
{
    char buf[1024];
    sprintf(buf, "%s %s", a, b);
    for(int i=0; i<strlen(buf); ++i)
    {
        if (param_info.data)
        {
        }else
        {
        }
    }
}

int main(int argc, char** argv)
{
    printf("%s, Copyright (c) 2003 by Microsoft\n", *argv);
    param_info.count = argc;
    param_info.data = argv;
    for(int i = 1; i < argc; ++i)
    {
        s(argv[0], argv[ i ]);
        if (i<argc-1)
        {
            s(argv[ i ], argv[ i+1 ]);
        }
    }
}


--
Gruß, virtual
Quote of the Month
Ich eß' nur was ein Gesicht hat (Creme 21)

Dieser Post wurde am 25.09.2003 um 14:48 Uhr von virtual editiert.
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
019
25.09.2003, 14:55 Uhr
0xdeadbeef
Gott
(Operator)


He, he...

C++:
#define LICENSE "GPL"

struct {
    int count;
    char **data;
} param_info;

#include <stdio.h>
#include <string.h> /* <-- bugfix */

void s(const char* a, const char* b)
{
    char buf[1024];
    sprintf(buf, "%s %s", a, b);
    for(int i=0; i<strlen(buf); ++i)
    {
        if (param_info.data)
        {
        }else
        {
        }
    }
}

int main(int argc, char** argv)
{
    printf("%s, Copyright (c) 2003 by Microsoft\n", *argv);
    param_info.count = argc;
    param_info.data = argv;
    for(int i = 1; i < argc; ++i)
    {
        s(argv[0], argv[ i ]);
        if (i<argc-1)
        {
            s(argv[ i ], argv[ i+1 ]);
        }
    }
}


--
Einfachheit ist Voraussetzung für Zuverlässigkeit.
-- Edsger Wybe Dijkstra
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
Seiten: [ 1 ] > 2 < [ 3 ] [ 4 ]     [ Rätselecke ]  


ThWBoard 2.73 FloSoft-Edition
© by Paul Baecher & Felix Gonschorek (www.thwboard.de)

Anpassungen des Forums
© by Flo-Soft (www.flo-soft.de)

Sie sind Besucher: