Save time. Use an auto formatter.
Hopefully then “why is the output like that “$$$$$”?” is self apparent.
#include <stdio.h>
int main() {
  int x = 11;
  int y = 9;
  if (x < 10)
    if (y > 10)
      puts("*****");
    else
      puts("#####");
  puts("$$$$$");
  return 0;
}
6
solved What is exactly dangling-else problem in c? [closed]