Skip to content

Commit

Permalink
draft true C言語
Browse files Browse the repository at this point in the history
  • Loading branch information
Scrrrr committed Dec 12, 2024
1 parent 6186237 commit f614eb3
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion src/content/posts/c-pointer/C言語のポインター.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,26 @@ int main(void)
}
```


## 文字配列の要素数を求めたいときはstrlenを使おう
配列の要素数を求めたいときは`sizeof(array)/sizeof(array[0])`をよく使います。
```c
/*strがNULLになるまでlenをインクリメントして文字列の長さを得ようとしてる!*/
void func(char *str)
{
int len = 0;

while(*str) //先頭配列が保持されない!
{
str++;
len++;
}

while(str[len]) //先頭配列が保持される
{
len++;
}
}
```
Expand Down

0 comments on commit f614eb3

Please sign in to comment.