Programming in C - Constants, Variables and Data Types

56. The statement
printf( " % f ", ( float )9/5) ;
prints

Cancel reply
Cancel reply

57. The declaration
enum cities{ bethlehem, jericho, nazareth = 1, jerusalem }
assigns the value 1 to

  • Option : D
  • Explanation :
    The listed places will be assigned the values 0, 1, 1, 2 respectively.
Cancel reply
Cancel reply