Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions programs/C/length_string.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
#include <stdio.h>

//Created a function to calculate length of string.
int lengthOfString(char stringInput[50]) {
int length = 0, i;
scanf("%[^\n]", stringInput); //Input of the string

for(i = 0; stringInput[i]!='\0'; i++)

length++;

return length;
}

int main(void) {
char sentence [50];
int length;

length = lengthOfString(sentence); // Using the function
printf("%d \n", length); // Printing the length of the sentence

return 0;
}