Mode:
Duration:
1
Coding works best on desktop or with an external keyboard.
Coding works best on desktop or with an external keyboard.
Example showing how to follow MISRA C by avoiding implicit type conversions.
/* Non-compliant: implicit conversion */
char c = 300;
/* Compliant: explicit cast with proper range check */
int value = 300;
char c;
if ((value >= CHAR_MIN) && (value <= CHAR_MAX))
{
c = (char)value;
}MISRA C and MISRA C++ are coding standards developed to facilitate safety, reliability, and maintainability in embedded systems, especially in automotive, aerospace, and critical industries.
Origin & Creator
Created by the Motor Industry Software Reliability Association (MISRA) in 1998, initially for the automotive industry; later expanded to C++ and broader safety-critical domains.
Industrial Note
Extensively used in automotive ECUs, aerospace flight control software, industrial PLC firmware, and other high-integrity embedded systems.