Advertisement
AbraaoAllysson

Decodificador- em c

May 11th, 2016
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.09 KB | None | 0 0
  1. int decodificador(int s)
  2. {  
  3.     int saida = 1;
  4.    
  5.     saida = saida<<s;
  6.  
  7.     return saida;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement