الرجوع
تسجيل الدخول
أنت تتصفح نسخة مؤرشفة من الموقع اضغط للانتقال إلى الموقع الجديد بكامل المزايا

What is the output?

public class RecursionExample1 {
  static void p() {
    System.out.println("hello");
    p();
  }

  public static void main(String[] args) {
    p();
  }
}