bottleros/Userland/SampleCodeModule/shell/commands/excDiv.c

7 lines
97 B
C

#include "excDiv.h"
void excdiv() {
int cero = 0;
int res = 1/cero;
res = res + 1;
}