Programming in C - Constants, Variables and Data Types

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

Cancel reply

Your email address will not be published. Required fields are marked *


Cancel reply

Your email address will not be published. Required fields are marked *


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

Your email address will not be published. Required fields are marked *


Cancel reply

Your email address will not be published. Required fields are marked *