Answers for "how to count size of a string in c"

C
2

size string C

#include <string.h>

void main(void)
{
	char str[] = "Hello";
	int str_size = strlen(str);
}
Posted by: Guest on August-05-2021

Code answers related to "how to count size of a string in c"

Code answers related to "C"

Browse Popular Code Answers by Language