1. 程式人生 > >用指標處理計算字串長度

用指標處理計算字串長度

#include<iostream>
using namespace std;
int hhh(char *pt);
void main()
{
int i;
char str[100], *pt = str;
cout << "請輸入陣列元素" << endl;
gets_s(str);
cout << hhh(pt) << endl;




}
int hhh(char *pt)
{
int n = 0;
while (*(pt + n) != '\0')
n++;
return n;
}