fork download
#include <iostream>
#include <inttypes.h>

using namespace std;

size_t strlen(const char* in){
	size_t i = 0;
	while(*(in+i)!='\0')
		i++;
	return i;
}

int main() {
	// your code goes here
	cout<<strlen("hello world");
	return 0;
}
Success #stdin #stdout 0s 3296KB
stdin
Standard input is empty
stdout
11