Computer Science, asked by krishna8831, 10 months ago

Impiment the following strings functions with out using library functions compute the length of the string program

Answers

Answered by brainbuster3
0
include <stdio.h> int main() { char s[1000]; int i; printf("Enter a string: "); scanf("%s", s); for(i = 0; s[i] != '\0'; ++i); printf("Length of string: %d", i); return 0; }

mark as brainlist
Similar questions