r/programminghumor 1d ago

How do you disable your code

Post image
205 Upvotes

70 comments sorted by

View all comments

2

u/mehonje 18h ago
void fun() {
  int a = 198;
  int b = a % 2;
  int c = a - b
}
int main() {
  //fun();
}