[previous] 3755 [next] Implicit conversion: int to char.
Arithmetic type - Implicit conversions

An expression of type signed int is being implicitly converted to type char. Is this intended ? This operation could result in data loss.

Implicit type conversions of this nature can occur in the context of:

In the C language there exist 3 distinct char types:

It is recommended that signed char and unsigned char should be used for "numeric" data and plain char should be used for "character" data. Numeric data can be stored in type char but the range of values will be implementation-defined because the type is sometimes implemented as a signed type and sometimes as an unsigned type. Likewise, character data can be stored in type signed char or type unsigned char, but it is more sensible to use type char.

For example:


/*PRQA S 2017,3197,3199,3203,3227,3408,3447,3602,3625 ++*/


extern void ef(char p);

extern char foo(signed int v)
{
    char a = v;                 /* Message 3755 */

    a = v;                      /* Message 3755 */

    ef(v);                      /* Message 3755 */

    return v;                   /* Message 3955 */
}


No MISRA C:2012 Rules applicable to message 3755


See also:

QA·C Source Code Analyser 8.1
MISRA C:2012 Compliance Module 1.0
© 2012 Programming Research.
www.programmingresearch.com
Personality Groups | Glossary | Message Index | MISRA C:2012 Rule Index Contents