QBANK2
QBANK2
26. The -----------operator can be used to determine the length of array and structures.
sizeof
27. The -----------operator can be used to allocate memory space dynamically to variables
during
Execution of a program. -sizeof
43. Determine the value of the following logical expression when x=10, y=15 and z=20.
Expression Result
X! = yll y = = z -------------------
true
44. The standard mathematical functions are included in the ------------..header file.
math.h
45. ----------------function can be used to read a single character.
getch ( )
46. In C, language ------------checks whether the input value of the argument c is an alphabet or
not.
isalpha (c)
47. --------------function checks whether c is lower case letter or not.
Islower (c )
48. -------------function checks whether c is upper case letter or not.
Isupper (c )
49. ------------checks whether c is an alphanumeric character or not.
Isalnum (c)
50. Repeating a set of statements for a specific number of times is called ------------ structure.
looping
51. An immediate exit from the loop can be achieved by a ------------ statement.
break
52. The ------------ statement causes the next iteration of the loop structure.
continue