صفحة 3 من 9 الأولىالأولى 123456789 الأخيرةالأخيرة
النتائج 31 إلى 45 من 124
  1. #31
    تاريخ التسجيل
    Jul 2011
    الإقامة
    السعودية
    المشاركات
    11,147

    افتراضي

    ماهو مفهوم الكولن : وماهو مفهوم السكوب-رِزلوشن :: كما في الصورة اسفل؟


  2. #32
    تاريخ التسجيل
    Jul 2011
    الإقامة
    السعودية
    المشاركات
    11,147

    افتراضي

    union -- هل باستخدامها ممكن يكون برنامجك مثل الريشة؟

  3. #33
    تاريخ التسجيل
    Jul 2011
    الإقامة
    السعودية
    المشاركات
    11,147

    افتراضي

    A union is a special data type available in C that allows to store different data types in the same memory location. You can define a union with many members, but only one member can contain a value at any given time. Unions provide an efficient way of using the same memory location for multiple-purpose.

  4. #34
    تاريخ التسجيل
    Jul 2011
    الإقامة
    السعودية
    المشاركات
    11,147

    افتراضي

    مرة ثانية:
    You can define a union with many members, but only one member can contain a value at any given time

  5. #35
    تاريخ التسجيل
    Jul 2011
    الإقامة
    السعودية
    المشاركات
    11,147

    افتراضي

    Recursion


    if a program allows you to call a function inside the same function, then it is called a recursive call of the function.
    كود PHP:
    void recursion() {
       
    recursion(); /* function calls itself */

    But while using recursion, programmers need to be careful to define an exit condition from the function, otherwise it will go into an infinite loop.

    Recursive functions are very useful to solve many mathematical problems, such as calculating the factorial of a number, generating Fibonacci series, etc.
    آخر تعديل بواسطة فيلسوف البادية ، 30-09-2017 الساعة 02:21 AM

  6. #36
    تاريخ التسجيل
    Jul 2011
    الإقامة
    السعودية
    المشاركات
    11,147

    افتراضي

    Recursion EXAMPLE: Fibonacci series

    كود PHP:
    void OnStart()
    {
       
    int i;
       for (
    010i++)       printf("%d\t\n"fibonacci(i));
    }

    int fibonacci(int i) {

       if(
    == 0) {
          return 
    0;
       }
        
       if(
    == 1) {
          return 
    1;
       }
       return 
    fibonacci(i-1) + fibonacci(i-2);


  7. #37
    تاريخ التسجيل
    Jul 2011
    الإقامة
    السعودية
    المشاركات
    11,147

    افتراضي

    النتيجة
    وهي السلسلة الشهيرة 0-1-1-2-3-5-8-13- االخ

  8. #38
    تاريخ التسجيل
    Jul 2011
    الإقامة
    السعودية
    المشاركات
    11,147

    افتراضي

    كيف تدمر بشكل تام جهاز اي متداول يستخدم اي نوع من البرامج التي تحول ملفات EX4 الى MQ4

  9. #39
    تاريخ التسجيل
    Jul 2011
    الإقامة
    السعودية
    المشاركات
    11,147

    افتراضي

    هل يوجد خطأ في الكود اسفل؟
    ج: لا رغم اختلاف عدد ال arguments



    االاولوية: الاصايند فاليو b = 200 ثم الديفولت فااليو b = 20
    آخر تعديل بواسطة فيلسوف البادية ، 30-09-2017 الساعة 06:04 AM

  10. #40
    تاريخ التسجيل
    Jul 2011
    الإقامة
    السعودية
    المشاركات
    11,147

    افتراضي

    الكود اسفل صحيح رغم اختلاف عدد ال arguments



    يصبح خاطئ لو شلت ايا من الديفولت فااليوز

    When you define a function, you can specify a default value for each of the last parameters. This value will be used if the corresponding argument is left blank when calling to the function.

    This is done by using the assignment operator and assigning values for the arguments in the function definition. If a value for that parameter is not passed when the function is called, the default given value is used, but if a value is specified, this default value is ignored and the passed value is used instead.
    آخر تعديل بواسطة فيلسوف البادية ، 30-09-2017 الساعة 06:21 AM

  11. #41
    تاريخ التسجيل
    Jul 2011
    الإقامة
    السعودية
    المشاركات
    11,147

    افتراضي

    Instance variable in Java

    A variable which is created inside the class but outside the method, is known as instance variable. Instance variable doesn't get memory at compile time. It gets memory at run time when object(instance) is created. That is why, it is known as instance variable.

  12. #42
    تاريخ التسجيل
    Jul 2011
    الإقامة
    السعودية
    المشاركات
    11,147

    افتراضي

    The four fundamental OOP concepts
    inheritance
    polymorphism
    encapsulation
    abstraction

  13. #43
    تاريخ التسجيل
    Jul 2011
    الإقامة
    السعودية
    المشاركات
    11,147

    افتراضي

    What is Band Chart?


  14. #44
    تاريخ التسجيل
    Jul 2011
    الإقامة
    السعودية
    المشاركات
    11,147

    افتراضي

    #ifdef
    مثال:


  15. #45
    تاريخ التسجيل
    Jul 2011
    الإقامة
    السعودية
    المشاركات
    11,147

    افتراضي

    The #ifdef directive controls conditional compilation of the resource file by checking the specified name

    آخر تعديل بواسطة فيلسوف البادية ، 30-09-2017 الساعة 10:09 AM

صفحة 3 من 9 الأولىالأولى 123456789 الأخيرةالأخيرة

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17