int strlen(char* s)

{

int i=0;

while(1)

{

if(s[i]==0)

return i;

i++;

}

}


c공부한지 일주일됐음 ㅍㅌㅊ?