Error computing, an error code (or a return code) is a numeric or alphanumeric code that indicates the nature of an error and, when possible, why it occurred. Error codes can be reported to end users of software, returned from communication protocols, or used within programs as a method of representing anomalous conditions. Error codes are commonly encountered on displays of consumer electronics to users in order to communicate or specify an error. They are commonly reported by consumer electronics when users bring electronics to perform tasks that they cannot do (e.g., dividing by zero), or when the program within a device encounters an anomalous condition. Error codes reported by consumer electronics are used to help diagnose and repair technical problems. An error code can be communicated to relevant support staff to identify potential fixes, or can simplify research into the cause of an error. There is no definitive format for error codes, meaning that error codes typically differ from/between products and or companies. Error codes in computers can be passed to the system itself, to judge how to respond to the error. Often error codes come synonymous with an exit code or a return value. The system may also choose to pass the error code to its user(s). The Blue screen of death is an example of how the Windows operating system communicates error codes to the user. Error codes can be used within a computer program to represent an anomalous condition. A computer program can take different actions depending on the value of an error code. Different programming languages, operating systems, and programming environments often have their own conventions and standards for the meanings and values of error codes. Examples include: Unix-like systems have an errno.h header file that contains the meanings and values of error codes returned by system calls and library functions. Microsoft Windows' application programming interfaces (APIs) have several different standards for error code values, depending on the specific API being used.