commit bc51722f69f90810eb89655250ff0d7fc3438449
parent feb75add673afa49b2e176803e2fa4632ff55c39
Author: Amit Dutta <amitdutta4255@gmail.com>
Date: Fri, 17 Oct 2025 13:56:20 +0530
K-I
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/index.html b/docs/index.html
@@ -704,7 +704,7 @@ int main()
;
printf("\nEnter a word to get the length : ");
scanf("%19s", &a);
- len += printf("Your input : %s", a);
+ len += printf("Your input : %s", a); // here the "Your input : ", this 13 characters are extra
printf("\nLength : %d", len);
return 0;
}</code></pre>
diff --git a/khurapati-idea/KI001.c b/khurapati-idea/KI001.c
@@ -19,7 +19,7 @@ int main()
;
printf("\nEnter a word to get the length : ");
scanf("%19s", &a);
- len += printf("Your input : %s", a);
+ len += printf("Your input : %s", a); // here the "Your input : ", this 13 characters are extra
printf("\nLength : %d", len);
return 0;
}
\ No newline at end of file