Anything that was made in a language with access to memory.
Embedded and IoT devices.
# bo_1.py
message = "Hello World"
buffer = [None] * 10
print(message)
for i in range(15):
buffer[i] = 'A'
print(message)
$ python3 bo_1.py
Hello World
Traceback (most recent call last):
File "bo_1.py", line 7, in <module>
buffer[i] = 'A'
IndexError: list assignment index out of range
#include <stdio.h>
void main(int argc, char* argv[]){
char message[] = "Hello World";
int buffer[5];
int i;
printf("%s\n", message);
for(i = 0;i < 15; i++) {
buffer[i] = 'A';
}
printf("%s\n", message);
}