Explanation:
C++ Program to display month name according to the month number using Switch Statement
that's why called checkmonth
/* C Program to display month name according to the month number using Switch Statement */ #include<stdio.h> int main() { int n; printf("Month No : "); scanf("%d",&n); switch(n) { case 1: printf("January"); break; case 2: printf("February"); break; case 3: printf("March"); break; case 4: printf("April"); break; case 5: printf("May"); break; case 6: printf("June"); break; case 7: printf("July"); break; case 8: printf("August"); break; case 9: printf("September"); break; case 10: printf("October"); break; case 11: printf("November"); break; case 12: printf("December"); break; default: printf("Invalid Month number\nPlease try again ....\n"); break; } return 0; }
public-speaking skills, writing skills, leadership skills, or compassion good vision
2. Identify the function of computer hardware components
A these are your main components
B is just stuff like mouses, monitors etc
C binary is not a main component
D cpu and processor are the same thing
So A is your answer