Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Welcome to Software Development on Codidact!

Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.

Post History

66%
+2 −0
Q&A Input taking only first character of a string

Your pointer function is uninitialized. From some documentation pages for scanf at https://man7.org/linux/man-pages/man3/scanf.3.html : s Matches a sequence of non-white-space characters; the...

posted 3y ago by elgonzo‭  ·  edited 3y ago by elgonzo‭

Answer
#3: Post edited by user avatar elgonzo‭ · 2021-06-30T10:28:31Z (almost 3 years ago)
  • Your pointer function is uninitialized.
  • From some documentation pages for `scanf`
  • at https://man7.org/linux/man-pages/man3/scanf.3.html :
  • > s<br>
  • >Matches a sequence of non-white-space characters; **the next
  • pointer must be a pointer to the initial element of a
  • character array that is long enough to hold the input
  • sequence and the terminating null byte ('\0')**, which is
  • added automatically. The input string stops at white
  • space or at the maximum field width, whichever occurs
  • first.
  • and at https://www.cplusplus.com/reference/cstdio/scanf/ :
  • > ... (additional arguments)<br>
  • >Depending on the format string, the function may expect a sequence of additional arguments, each containing a pointer to **allocated storage** where the interpretation of the extracted characters is stored with the appropriate type.<br>
  • (emphasis mine)
  • <br>
  • The simplest way is probably to use a char array, and limit the field width of the `%s` format specifier to the size of the char array (minus the null terminator):
  • ```c
  • char function [80];
  • scanf("%79s", function);
  • ```
  • <br>
  • (P.S.: I don't know whether the code example in your question is really the cause of the issue you experience. I have doubts, as i would rather expect the program crashing when using an uninitialized pointer like that. But hey, it's the code you have identified as being the cause of the problem, so i will go with that...)
  • Your pointer `function` is uninitialized.
  • From some documentation pages for `scanf`
  • at https://man7.org/linux/man-pages/man3/scanf.3.html :
  • > s<br>
  • >Matches a sequence of non-white-space characters; **the next
  • pointer must be a pointer to the initial element of a
  • character array that is long enough to hold the input
  • sequence and the terminating null byte ('\0')**, which is
  • added automatically. The input string stops at white
  • space or at the maximum field width, whichever occurs
  • first.
  • and at https://www.cplusplus.com/reference/cstdio/scanf/ :
  • > ... (additional arguments)<br>
  • >Depending on the format string, the function may expect a sequence of additional arguments, each containing a pointer to **allocated storage** where the interpretation of the extracted characters is stored with the appropriate type.<br>
  • (emphasis mine)
  • <br>
  • The simplest way is probably to use a char array, and limit the field width of the `%s` format specifier to the size of the char array (minus the null terminator):
  • ```c
  • char function [80];
  • scanf("%79s", function);
  • ```
  • <br>
  • (P.S.: I don't know whether the code example in your question is really the cause of the issue you experience. I have doubts, as i would rather expect the program crashing when using an uninitialized pointer like that. But hey, it's the code you have identified as being the cause of the problem, so i will go with that...)
#2: Post edited by user avatar elgonzo‭ · 2021-06-30T10:12:45Z (almost 3 years ago)
  • Your pointer function is uninitialized.
  • From some documentation pages for `scanf`
  • at https://man7.org/linux/man-pages/man3/scanf.3.html :
  • > s<br>
  • >Matches a sequence of non-white-space characters; **the next
  • pointer must be a pointer to the initial element of a
  • character array that is long enough to hold the input
  • sequence and the terminating null byte ('\0')**, which is
  • added automatically. The input string stops at white
  • space or at the maximum field width, whichever occurs
  • first.
  • and at https://www.cplusplus.com/reference/cstdio/scanf/ :
  • > ... (additional arguments)<br>
  • >Depending on the format string, the function may expect a sequence of additional arguments, each containing a pointer to **allocated storage** where the interpretation of the extracted characters is stored with the appropriate type.<br>
  • (emphasis mine)
  • <br>
  • The simplest way is probably to use a char array, and limit the field width of the `%s` format specifier to the size of the char array (minus the null terminator):
  • ```c
  • char function [80];
  • scanf("%79s", function);
  • ```
  • <br>
  • (P.S.: I don't know whether the code example in your question is really the cause of the issue you experience. I have doubts, as i would rather expect the program crashing when using an uninitilized pointer like that. But hey, it's the code you have identified as being the cause of the problem, so i will go with that...)
  • Your pointer function is uninitialized.
  • From some documentation pages for `scanf`
  • at https://man7.org/linux/man-pages/man3/scanf.3.html :
  • > s<br>
  • >Matches a sequence of non-white-space characters; **the next
  • pointer must be a pointer to the initial element of a
  • character array that is long enough to hold the input
  • sequence and the terminating null byte ('\0')**, which is
  • added automatically. The input string stops at white
  • space or at the maximum field width, whichever occurs
  • first.
  • and at https://www.cplusplus.com/reference/cstdio/scanf/ :
  • > ... (additional arguments)<br>
  • >Depending on the format string, the function may expect a sequence of additional arguments, each containing a pointer to **allocated storage** where the interpretation of the extracted characters is stored with the appropriate type.<br>
  • (emphasis mine)
  • <br>
  • The simplest way is probably to use a char array, and limit the field width of the `%s` format specifier to the size of the char array (minus the null terminator):
  • ```c
  • char function [80];
  • scanf("%79s", function);
  • ```
  • <br>
  • (P.S.: I don't know whether the code example in your question is really the cause of the issue you experience. I have doubts, as i would rather expect the program crashing when using an uninitialized pointer like that. But hey, it's the code you have identified as being the cause of the problem, so i will go with that...)
#1: Initial revision by user avatar elgonzo‭ · 2021-06-30T10:11:33Z (almost 3 years ago)
Your pointer function is uninitialized.

From some documentation pages for `scanf`

at https://man7.org/linux/man-pages/man3/scanf.3.html :
> s<br>
>Matches a sequence of non-white-space characters; **the next
              pointer must be a pointer to the initial element of a
              character array that is long enough to hold the input
              sequence and the terminating null byte ('\0')**, which is
              added automatically.  The input string stops at white
              space or at the maximum field width, whichever occurs
              first.

and at https://www.cplusplus.com/reference/cstdio/scanf/ :

> ... (additional arguments)<br>
>Depending on the format string, the function may expect a sequence of additional arguments, each containing a pointer to **allocated storage** where the interpretation of the extracted characters is stored with the appropriate type.<br>

(emphasis mine)

<br>

The simplest way is probably to use a char array, and limit the field width of the `%s` format specifier to the size of the char array (minus the null terminator):
```c
char function [80];
scanf("%79s", function);
```

<br>
(P.S.: I don't know whether the code example in your question is really the cause of the issue you experience. I have doubts, as i would rather expect the program crashing when using an uninitilized pointer like that. But hey, it's the code you have identified as being the cause of the problem, so i will go with that...)