ماهو مفهوم الكولن : وماهو مفهوم السكوب-رِزلوشن :: كما في الصورة اسفل؟
http://www4.0zz0.com/2017/09/29/23/237045583.png
Printable View
ماهو مفهوم الكولن : وماهو مفهوم السكوب-رِزلوشن :: كما في الصورة اسفل؟
http://www4.0zz0.com/2017/09/29/23/237045583.png
union -- هل باستخدامها ممكن يكون برنامجك مثل الريشة؟
http://www9.0zz0.com/2017/09/30/01/529262830.png
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.
مرة ثانية:
You can define a union with many members, but only one member can contain a value at any given time
Recursion
if a program allows you to call a function inside the same function, then it is called a recursive call of the function.
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.كود PHP:void recursion() {
recursion(); /* function calls itself */
}
Recursive functions are very useful to solve many mathematical problems, such as calculating the factorial of a number, generating Fibonacci series, etc.
Recursion EXAMPLE: Fibonacci series
كود PHP:void OnStart()
{
int i;
for (i = 0; i < 10; i++) printf("%d\t\n", fibonacci(i));
}
int fibonacci(int i) {
if(i == 0) {
return 0;
}
if(i == 1) {
return 1;
}
return fibonacci(i-1) + fibonacci(i-2);
}
النتيجة
وهي السلسلة الشهيرة 0-1-1-2-3-5-8-13- االخ
http://www14.0zz0.com/2017/09/30/02/137513855.png
كيف تدمر بشكل تام جهاز اي متداول يستخدم اي نوع من البرامج التي تحول ملفات EX4 الى MQ4
هل يوجد خطأ في الكود اسفل؟
ج: لا رغم اختلاف عدد ال arguments
http://www12.0zz0.com/2017/09/30/05/789189204.png
االاولوية: الاصايند فاليو b = 200 ثم الديفولت فااليو b = 20
الكود اسفل صحيح رغم اختلاف عدد ال arguments
http://www13.0zz0.com/2017/09/30/06/836840873.png
يصبح خاطئ لو شلت ايا من الديفولت فااليوز
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.
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.
The four fundamental OOP concepts
inheritance
polymorphism
encapsulation
abstraction
What is Band Chart?
http://www7.0zz0.com/2017/09/30/09/467422358.png
#ifdef
مثال:
http://www5.0zz0.com/2017/09/30/09/868861005.png
The #ifdef directive controls conditional compilation of the resource file by checking the specified name
http://www11.0zz0.com/2017/09/30/10/995036591.png