Java - Static Keyword
Identify the error in this code:
class Demo {
static void show() {
System.out.println("Hello");
}
public static void main(String[] args) {
show();
Demo d = new Demo();
d.show();
}
}