6 lines
125 B
C
6 lines
125 B
C
|
// Expecting two variables with a value of two
|
||
|
void main() {
|
||
|
unsigned int x = 4;
|
||
|
unsigned int y = 2;
|
||
|
x = x / y;
|
||
|
}
|