Advertisement
pauloludewig

funcao simplificada

May 2nd, 2013
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main(void)
  5. {
  6. int a;
  7. a=funcao(a);
  8. printf("%d\n", a);
  9. system("PAUSE");
  10. return 0;
  11. }
  12.  
  13. int funcao(int a)
  14. {
  15. printf("teste\n");
  16. return (5);
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement