Multiple Choice
Moderate
QOutput?
#include
int main() {
int a[3] = {5,10,15};
printf("%d", a[1]);
return 0;
}
#include
int main() {
int a[3] = {5,10,15};
printf("%d", a[1]);
return 0;
}
ID: #24916
SEMESTER – I - COMS - Unit – 3: Section 4: Introduction to C: Arrays and Structure
8 views
Question Info
#24916Q 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[1] হলো second element।
a[0]=5, a[1]=10
Output: 10
Continue Practice
Share
Share This Question
Challenge a friend or share with your study group.
More from This Topic