اكتب برنامج بلغة C لحساب طول قيمة نصية (string) باستخدام مؤشر

  • برمجة
  • برمجة سي c

اكتب برنامج بلغة C لحساب طول قيمة نصية (string) باستخدام مؤشر

الخرج المتوقع :

 Pointer : Calculate the length of the string :
---------------------------------------------------
 Input a string : w3resource
 The length of the given string w3resource
 is : 10

الأجوبة

/*Write a program in C to Calculate the length of the string using a pointer*/

#include <stdio.h>
int calculateLength(char*);
 
void main() 
{
   char str1[25];
   int l;
	printf("\n\n Pointer : Calculate the length of the string :\n"); 
	printf("---------------------------------------------------\n");
   
   printf(" Input a string : ");
   fgets(str1, sizeof str1, stdin);
   
   l = calculateLength(str1);
   printf(" The length of the given string %s is : %d ", str1, l-1);
   printf("\n\n");

}
 
int calculateLength(char* ch) // ch = base address of array str1 ( &str1[0]  )
{
   int ctr = 0;
   while (*ch != '\0') 
   {
      ctr++;
      ch++;
   }
   return ctr;
}
هل كان المحتوى مفيد؟

تبحث عن مدرس اونلاين؟

محتاج مساعدة باختيار المدرس الافضل؟ تواصل مع فريقنا الان لمساعدتك بتأمين افضل مدرس
ماهو التخصص الذي تبحث عنه؟
اكتب هنا...