Write a declaration of an array named calendar containing 12 integer values. Inc
ID: 3677714 • Letter: W
Question
Write a declaration of an array named calendar containing 12 integer values. Include an initializer that sets all 12 values: the first value to the number of days in January, the second to the number of days in February,... Declare an array of size 10 of type char. Write a loop that initializes each value of the array to a random character between 'A' and 'Z' Declare an array of size 1000 of type int and initialize the first 3 elements to 1, 2, and 3 respectively and the remaining elements to 0 without using a loop.Explanation / Answer
Please find the answers below :
1)
2)
3)