I have used Code::blocks 12 compiler for debugging purpose. But you can use any C programming language compiler as per your availability.
Write C Program to find length of string using pointer
#include <stdio.h> #define MAX_SIZE 100 // Maximum size of the string int main() { char text[MAX_SIZE]; char * str = text; int count = 0; // Inputtin string from user printf("Enter any string: "); gets(text); // Iterating though last element of the string while(*(str++) != '\0') count++; printf("Length of %s is: %d", text, count); return 0; }
15 March 2019 1356 Written By: Rohit
© 2020 Tech Study. All rights reserved | Developed by Tech Study| Privacy Policy | Sitemap