This program is about finding the length and print the given string without using Pre-defined functions
#include<stdio.h> int main() { int i,c=0; char str[100]; printf("\nEnter the String:"); gets(str); printf("\nGiven String:"); puts(str); for(i=0;str[i]!='\0';i++) { c++; } printf("\nString Length:%d",c); return 0; }To download raw file Click Here
Enter the String:Tutor Joe's string length:11
Learn All in Tamil © Designed & Developed By Tutor Joes