Answered step by step
Verified Expert Solution
Question
1 Approved Answer
7. Which keyword is used to transfer the control from the function back to the main program? switch goto goback return 8. Which of the
7. Which keyword is used to transfer the control from the function back to the main program?
- switch
- goto
- goback
- return
8. Which of the following statements are correct about an array? Select all that apply
- The array int num[26]; can store 26 elements.
- The expression num[1] designates the very first element in the array.
- It is necessary to initialize the array at the time of declaration.
- The declaration num[SIZE] is allowed if SIZE is a macro.
9. A program includes the following declarations:
struct Date
{
int day, month, year;
};
Date bDate;
What code would you use to set the month of bDate?
- bDate!month = 3;
- bDate.month = 4;
- bDate(1) = 4;
- bDate->month = 6;
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started