Jump to content

Ler variios argumentos da consola


benkas
 Share

Recommended Posts

int main(int argc, char **argv) {
    int i, j=0;
    char *st;
    for (i=0; i<argc; ++i) {
        j += strlen(argv[i]);
    }
    st = (char *)malloc(sizeof(char) * i);
    *st = '\0';
    for (i=0; i<argc; ++i) {
        strcat(st, argv[i]);
        strcat(st, " ");
    }
    /* st tem o valor de todos os argumentos concatenados */
    return 0;
}

Não testei esse código, mas deve funcionar. Além de que é muito optimizável.

Desaparecido.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...

Important Information

By using this site you accept our Terms of Use and Privacy Policy. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.