//https://[Log in to view URL]
//https://[Log in to view URL]

#include <stdio.h>
#include <string.h>

int main() 
{
	char str[20] = "ABCDEFGHIJK";
	int s = strlen(str);
	
	str[3] = '\0';
	s = strlen(str);
	
	printf("%d\n",s);
	printf("%s",str);
	return 0;
}

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: