Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

303
Vistas
Since printf of a string works with an address in input, why printf does not accept just "argv"
int main(int argc, char **argv){
    printf("argv: %s\n",argv); // does not work and prints random stuff
    printf("*argv: %s\n",*argv); // works and prints ".a.out"

}

I test with:

./a.out nop

My confusion is this:

"argv" variable in the second line has the address of the first char of "./a.out".

"*argv" variable in third line is the first char of "./a.out".

So why printf("argv: %s\n",argv); to only print "./a.out" does not work?

I know that it's wrong, but I don't know why.

enter image description here

over 4 years ago · Santiago Trujillo
1 Respuestas
Responde la pregunta

0

argv is a pointer to a pointer. It means it "points" to addresses, not directly to characters.

So at address argv, other addresses are stored, not strings. If you want to access the first string, you have to use the address of it, which is either *argv or argv[0].

I don't know if it's clear enough, don't hesitate to ask for more clarifications.

over 4 years ago · Santiago Trujillo Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda