13) Which operator can be used for accessing the value stored at address of a pointer variable?
A.#
B.*
C.&&
D.@
14) The types of linkages in C programming language are:
A.External linkage and None linkage
B.Internal linkage and None linkage
C.Internal linkage, External linkage and None linkage
D.Internal linkage and External linkage
15) Which of the following is true about C Programming?
Platform Independent
High level language
Machine Independent
Assembly language
16) What is the correct value returned to the operating system upon successful completion of a program?
A.0
B.-1
C.1
D.Programs do not return a value
17) Who is known as the founder of C language?
A.James Gosling
B.Martin Richard
C.Brian Kernighan
D.Dennis Ritchie
18) The C variables are case insensitive.
A.True
B.False
19) A character variable can store ___ character(s) at a time.
A.1
B.2
C.0
D.NULL
20) How would you round off a value from 1.66 to 2.0?
A.floor(1.66)
B.ceil(1.66)
C.roundup(1.66)
D.roundto(1.66)