Skip to content

Instantly share code, notes, and snippets.

@huseyin
Last active August 29, 2015 14:16
Show Gist options
  • Save huseyin/4b26a974ecc947e580ab to your computer and use it in GitHub Desktop.
Save huseyin/4b26a974ecc947e580ab to your computer and use it in GitHub Desktop.
örnek, örnek, örnek
/*
* Linux altındaki 'cat' komutunun benzeri.
* Kullanımı için terminalden;
* -> ./copex > hedef_file
* ile yönlendirilebilir.
*/
# include <stdio.h>
int main(void) {
int k;
k = getchar();
while ( k != EOF ) {
putchar(k);
k = getchar();
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment