Guest User

Untitled

a guest
Apr 25th, 2018
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. int recibeIntConfirmar(int a,int b,char*s){
  2. char ss[20];
  3. int i;
  4. scanf("%s",&ss);
  5. i=stringToInteger(ss);
  6. if(i>=a&&i<=b){
  7. return i;
  8. }
  9. printf("%s",s);
  10. return recibeIntConfirmar(a,b,s);
  11. }
Add Comment
Please, Sign In to add comment