انت مشغل الـ AdBlock !!
ياريت تقفله لوسمحت 😊 😊
تنبيه هام ✋
إذا كانت الإعلانات مزعجة بالنسبة لك، فيُمكنك التبرع ب50$ وسيتم إيقاف الإعلانات لمدة شهر لجميع زوار الموقع 🧡 ويُمكنك التواصل معنا عن طريق صفحة الفيس بوك
what is function?
function is a block of code designed to perform a particular task.
How to write function?
void sayhi() {
print("hi ali");
}
👉 sayhi();
int myfunc() {
return 5*2;
}
👉 print( myfunc() );
double myfunc(double height , double width ) {
return height * width ;
}
👉 print( myfunc(3.7*2); )
double myfunc(double height , double width ) {
return height * width ;
}
👉 double result = myfunc(3.7,2);
print( result );
ياريت تقفله لوسمحت 😊 😊
تنبيه هام ✋
إذا كانت الإعلانات مزعجة بالنسبة لك، فيُمكنك التبرع ب50$ وسيتم إيقاف الإعلانات لمدة شهر لجميع زوار الموقع 🧡 ويُمكنك التواصل معنا عن طريق صفحة الفيس بوك