Advertisement
Guest User

Untitled

a guest
Apr 19th, 2014
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. #include<stdio.h>
  2. void main()
  3. {
  4. char name[15]="reflections";
  5. char temp;
  6. temp=name[0];
  7. name[0]= name[2];
  8. name[2]=temp;
  9. puts(name);
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement