[previous] 0190 [next] [U] Using unsupported conversion specifier number %s.
Explicitly undefined REFERENCE - ISO:C90-7.9.6.2 Formatted input/output functions

An unrecognised conversion specifier has been encountered in this format string for scanf, fscanf or sscanf function. The number in the message refers to the sequence of specifiers in the format string.

For example:


/*PRQA S 336,602,1307,2017,3122,3200,3209,3408,3602,3625 ++*/

#include <stdio.h>

extern void foo(void)
{
    double total;
    scanf("%t", &total);          /* Message 0190 and 0206 */
    scanf("%lf", &total);         /* OK */
}

See also:

QA·C Source Code Analyser 8.1.2
© 2013 Programming Research.
www.programmingresearch.com
Personality Groups | Glossary | Message Index Contents