ProgIng - Programación en Ingeniería
Loading...
Searching...
No Matches
Ejemplo031.c File Reference
#include <stdio.h>
Include dependency graph for Ejemplo031.c:

Go to the source code of this file.

Functions

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

Function Documentation

◆ main()

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

Definition at line 3 of file Ejemplo031.c.

4{
5 int i;
6 printf("Numero de parametros de enytrada: %d\n", argc);
7 for(i=0; i<argc; i++)
8 printf("%d. %s\n", i+1, argv[i]);
9 return 0;
10}