MCQ
Single Best Answer
Not Set
Qনিচের Program-টি কী প্রদর্শন করবে?
#include
int main()
{
printf("Welcome");
return 0;
}
ID: #24889
SEMESTER – I - COMS - Unit – 3 Introduction to C: Basic Structure
1 views
Question Info
#24889Q ID
Not SetDifficulty
SEMESTER – I - COMS - Unit – 3 Introduction to C: Basic StructureTopic
Your Answer
Choose the Best Option
Click any option to instantly check if you're correct.
Correct Answer: Option B
Explanation
এই Program-এ printf() Function ব্যবহার করে Output প্রদর্শন করা হয়েছে।
Programটি Execute হলে Screen-এ Welcome লেখা প্রদর্শিত হবে।
এখানে:
- #include
→ Standard Input Output Header File যুক্ত করা হয়েছে - main() → Program-এর Main Function
- printf("Welcome") → Output প্রদর্শন করে
- return 0; → Program সফলভাবে শেষ হয়েছে বোঝায়
Program-এর Output:
Welcome
Continue Practice
Share
Share This Question
Challenge a friend or share with your study group.
More from This Topic