Place a V next to the right answer The format specifier for
Place a V next to the right answer The format specifier for the data type int is One of the following is a reserved word The output of the line print f(\"Prince Mohammed\ University\"): is
Solution
1.1 format specifier :-
* format specifiers defines the type of data to be printed on standard output.
Answer :-
* The format specifier for the data type int is %d.
1.2 reserved words :-
The keywords those have their pre-defined meaning and cannot be used as a variable name are also known as reserved words.
Answer :-
D.none of the above
1.3 The output of the line printf(\"Prince Mohammed\ University\"); is
Prince Mohammed
University
Explanation :-
* In c all kinds of data is printed by using printf statement.
* \"\ \" moves the cursor to starting of next line.
