実現したいこと
char* word = calloc(1000, sizeof(char));
で、文字列の読み取り中にエラーが発生しないように直したい。
前提
Longest WordsというC言語で書かれたコードを
Visual Studio Community 2022で実行しようとしています。
アルファベットで書かれた部分で一番長い部分を抽出するプログラムです。
ブレークポイントを張って確認すると
char* word = calloc(1000, sizeof(char));
で
「文字列の文字の読み取り中にエラーが発生しました」
というエラーが出ます。
発生している問題・エラーメッセージ
0x000000000133b940 <文字列の文字の読み取り中にエラーが発生しました。
該当のソースコード
C
1#include <stdio.h> 2#include <string.h> 3#include <ctype.h> 4 5void LongestWord(char* sen[]) { 6 7 char* ptr = sen; 8 printf("%s", ptr); 9 char* word = calloc(1000, sizeof(char)); 10 char* longestWord = calloc(1000, sizeof(char)); 11 12 for (int i = 0; i < strlen(ptr); i++) { 13 if (isalpha(ptr[i])) { 14 *(word + strlen(word)) = ptr[i]; 15 } 16 else { 17 if (strlen(word) > strlen(longestWord)) { 18 strcpy(longestWord, word); 19 } 20 memset(word, '\0', sizeof(word)); 21 } 22 } 23 24 if (strlen(word) > strlen(longestWord)) { 25 strcpy(longestWord, word); 26 } 27 28 printf("%s", longestWord); 29} 30 31int main(void) { 32 LongestWord("fun&!! time"); 33 LongestWord("I love dogs"); 34 return 0; 35}
試したこと
printf("%s", ptr);
を挿入して、ptrに正しく値が入っていることは確認できました。
calloc(1000, sizeof(char))の書式は正しいように見えます。
char* word = calloc(1000, sizeof(char));
を
char* word = calloc(50, sizeof(char));
に減らしても変わりませんでした。
補足情報(FW/ツールのバージョンなど)
C言語
Visual Studio Community 2022
Examples
Input: "fun&!! time"
Output: time
Input: "I love dogs"
Output: love
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2023/05/28 15:22
2023/05/31 05:57