Fill in The Blanks (CS) 1
Fill in The Blanks (CS) 1
Fill in The Blanks (CS) 1
2
44. the size of float data type is 4 bytes
45. the size of void data type is 0 bytes
46. The strlen( ) function is used to find the length of a string.
47. The strupr() function is used to convert a string to upper case.
48. The strlwr( ) function is used to convert a string to Lower case.
49. The strcat() function is used to add/join two strings.
50. The deterrence operator is used to access the value stored at a
particular address in memory
51. The size of operator is used to determine the size in bytes of a
data type or a variable
52. The equality operator is used to compare two values and
returns true if they are equal
53. The increment operator increments the value of a variable by 1
54. The break statement is used to exit a loop prematurely when a
certain iteration of a loop and continue with next iteration
55. The return statement is used to exit from a function and
optionally return a value to the caller
56. The continue function is used to skip the current iteration of a
loop and continue with next iteration
57. The exit function is used to terminate a program immediately
and can pass an exit status to the operating system