Guest User

Untitled

a guest
Jan 18th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main(void)
  4. {
  5. int i;
  6. char valor[9];
  7. char value[9] = "teste";
  8. for(i = 0; i < 10; i++)
  9. valor[i] = value[i];
  10. printf("%s", valor);
  11. }
Add Comment
Please, Sign In to add comment