Advertisement
Guest User

why

a guest
Oct 1st, 2014
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.13 KB | None | 0 0
  1. int    my_putchar(char c);
  2. {
  3. write(1 , &c , 1);
  4. }
  5. int    main();
  6. {
  7. c = 'a';
  8. while (c < 'z');
  9. {
  10. c = c + 1;
  11. putchar(c);
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement