![]() |
![]() |
0201 | ![]() |
||||
![]() | |||||||
| Explicitly undefined | REFERENCE - ISO:C90-7.9.6.2 Formatted input/output functions | ||||||
An incomplete format conversion specifier has been encountered in a call to
scanf, fscanf or sscanf.
The character that specifies the type of conversion appears to be missing.
For example:
/*PRQA S 336,602,1302,1307,2017,3122,3132,3200,3209,3335,3408,3602,3625 ++*/
#include <stdio.h>
extern void foo(void)
{
int n;
scanf("%d", &n); /* */
scanf("%5d", &n); /* */
scanf("%5", &n); /* Message 0201 */
scanf("%5h", &n); /* Message 0201 */
scanf("%L", &n); /* Message 0201 */
}
See also:
![]() | ||
| QA·C Source Code Analyser 8.1.2
© 2013 Programming Research. www.programmingresearch.com | Personality Groups | Glossary | Message Index | Contents |