Skip to content

Instantly share code, notes, and snippets.

@Rahajustone
Created February 25, 2014 18:25
Show Gist options
  • Save Rahajustone/9214749 to your computer and use it in GitHub Desktop.
Save Rahajustone/9214749 to your computer and use it in GitHub Desktop.
karakter-sayma
#include<stdio.h>
int main(void)
{
int ks; /* karakter saymak */
ks=0;
while(getchar()!=EOF)
++ks;
printf("%d",ks);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment