Tagged: 

  • This topic is empty.
Viewing 1 post (of 1 total)
  • Author
    Posts
  • #59
    admin
    Keymaster
      
      
       if (c == 'Y' || c == 'y')
          {
              printf("Agreed.\n");
          }
          else if (c == 'N' || c == 'n')
          {
              printf("Not agreed.\n");
          }

       

      This code from the first lecture appears loop but must not be a loop as mentioned “And if none of the expressions are true, nothing will happen since our program doesn’t have a loop.”

      Could please anyone clarify what differentiates loop from the above code which is not a loop with if, else if. I do know there are three kinds of loop in C:

      While

      Do – While

      For


      Reply


      https://edstem.org/us/courses/176/discussion/897635?comment=2047493[learn_press_profile]

    Viewing 1 post (of 1 total)
    • You must be logged in to reply to this topic.
    Scroll to Top