Skip to content

Instantly share code, notes, and snippets.

@esmaeelE
Last active January 27, 2020 11:48
Show Gist options
  • Save esmaeelE/4096b3c424a82ecee4fd5a8ed670f0a4 to your computer and use it in GitHub Desktop.
Save esmaeelE/4096b3c424a82ecee4fd5a8ed670f0a4 to your computer and use it in GitHub Desktop.

echo "salam samad dasads"|grep -o "a"|wc -l

C

	char str[]="aaaHello world";
	int a = 0;
	
	int i=0;
	while(i<sizeof str){		
		if(*(str+i++)=='a')
			a++;
	}
	printf("%d", a);
	
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment