Multiple Choice
Moderate
Q
#include
int main() {
int a[4] = {10,20,30,40};
printf("%d", a[0]);
return 0;
}
#include
int main() {
int a[4] = {10,20,30,40};
printf("%d", a[0]);
return 0;
}
ID: #24915
SEMESTER – I - COMS - Unit – 3: Section 4: Introduction to C: Arrays and Structure
10 views
Question Info
#24915Q ID
ModerateDifficulty
SEMESTER – I - COMS - Unit – 3: Section 4: Introduction to C: Arrays and StructureTopic
Your Answer
Select All That Apply
Tick every correct option, then press Check Answer.
Correct Answer
Explanation
a[0] হলো প্রথম element।
Output: 10
Continue Practice
Share
Share This Question
Challenge a friend or share with your study group.
More from This Topic