Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- void funciontest(int variable1);
- int main(int argc, char *argv[])
- {
- int variable = 0;
- printf("Mostrnado el valor de la varible:[%d]\n", variable);
- funciontest(9);
- return 0;
- }
- void funciontest(int variable1)
- {
- int variable [10];
- int variable2;
- int f=0;
- printf("Mostrnado el valor de la varible1:[%d]\n", variable1);
- printf("Mostrnado el valor de la varible2:[%d]\n", variable2);
- for(f=0;f<10;f++)
- variable[f]=f*2;
- printf("Mostrando el varlor de la variable en la posicion[%d]=%d\n", f, variable[f]);
- return;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement