MCQ Single Best Answer Moderate

QOutput?

#include 

int sum(int a, int b) {
    return a + b;
}

int main() {
    printf("%d", sum(10, 20));
    return 0;
}

ID: #24932 SEMESTER – I - COMS - Unit – 3: Section 5: Introduction to C: User defined functions 1 views
Question Info
#24932Q ID
ModerateDifficulty
SEMESTER – I - COMS - Unit – 3: Section 5: Introduction to C: User defined functionsTopic

Choose the Best Option

Click any option to instantly check if you're correct.

  • A 10
  • B 20
  • C 30
  • D Error
Correct Answer: Option C

Explanation

এখানে একটি user defined function sum() ব্যবহার করা হয়েছে।

Step Analysis:

  • sum(10, 20) → a = 10, b = 20
  • return a + b → 30

Output: 30

কেন C সঠিক: function দুটি সংখ্যা যোগ করে return করছে।

Share This Question

Challenge a friend or share with your study group.