Skip to content

Instantly share code, notes, and snippets.

@3inar
Created August 25, 2020 09:07
Show Gist options
  • Save 3inar/fd6ee735b53545c654ebc95ef0096b68 to your computer and use it in GitHub Desktop.
Save 3inar/fd6ee735b53545c654ebc95ef0096b68 to your computer and use it in GitHub Desktop.
#include <stdio.h>
void put_character(char);
int main() {
put_character(5);
end_line();
return 0;
}
void put_character(char x) {
printf("%d", x);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment