program for calculating the length of the string w
CodeChefOpen on judge ↗
C program for calculating the length of the string without using strlen() function copy and paste the below code in a editor #include int main() { char str[100]; int i,length=1; scanf("%f",str); for(i=0; str[i]='\0'; i++) { length+; } printf(" %s",length); return 0; } ### Input - First line will contain $T$, number of
HINT LADDERno hints yet
L1 Observation
L2 Technique
L3 Approach
L4 Pseudo-code
🔒
L5 Full solution
L5 unlocks only if you insist twice
solution.cppC++17
CodeSearch Tutor
Hints, not spoilers — it won’t hand over the full solution unless you insist.
Sign in to chat with the tutor and save your progress.
Sign in to start