Fill in the blanks :
(a) The void data type is used for
set of values.
(b) All C++ programs consist of one or more
(c) If any of the value does not match in SWITCH statement, then
executed.
(d) A
statement can transform program control anywhere.
(e)
header file is included to use cin and cout.
Answers
Answer:
a) The void data type specifies the empty set of values and only used to declare the functions. It is used as the return type for the functions that do not return any value.
b) C++ program: collection of one or more subprograms--called functions. Subprogram or function is collection of statements that, when invoked, performs some task. Every C++ program has one and ONLY one function called main()
c) Switch is a control statement that allows a value to change control of execution. ... The position of default doesn't matter, it is still executed if no match found.
d) This is, an assignment statement that could be followed by a null statement, as shown below ... A compound statement can appear anywhere within a C program. ... Control Statement A program consists of a number of 130 Computer Concepts ...
e) Header files available in C++ for Input/Output operations are: iostream: iostream stands for standard input-output stream. This header file contains definitions to objects like cin, cout, cerr etc. iomanip: iomanip stands for input output manipulators.
Hope it helps you!
Please mark me brainlist!