Information Technology "IT" - level 4
500 subscribers
688 photos
40 videos
834 files
170 links
رابط قناة المراجع والملخصات والنماذج والمحاضرات
@Al_Adeeb_Group
Download Telegram
تم تأجيــل اختبار تصميم المنطق عملي للمحملين والغائبين الى يــوم الثلثاء..
بسبب مــراجــ؏ــه الاحصاء والمناقشــﻫ ستكون الساعه 9 ..
تطبيق☝️ الاندرويد لمجموعة لمسه رقميه الاحصائيه برمجه ضياء السليماني
~*A_passing by value and passing vu refrence.*~`
المقارنه
🛑The first passinge By Value


1⃣ *int x;*
2⃣ *The parameter x is local variable*
3⃣ *It is duplicate of the argument*
4⃣ *It cannot change the argument.*
5⃣ *The argument passed by value many be a constant, avariable, or an cxpression.*
6⃣ *The argument is read-only.*
_
🛑 _*Second passing By Reference*_
1⃣ *int &x;*
2⃣ *The parameter x is local reference.*
3⃣ *It is synonym for the argument*
4⃣ *It can change the argument.*
5⃣ *The argument passed by reference must be avariable.*
6⃣ *The argument is read _write.*