Skip to main content

Algorithm, Flowchart and Program code to print the larger of two numbers

      Q. Write a program in C to print the larger of two numbers with    
           the help of algorithm and flowchart.


     Algorithm:

      Step 1: Start
      Step 2: Read a, b .        /* a, b two numbers */ 
      Step 3: If a>b then        /*Checking */
                      Display “a is the largest number”.
                  Otherwise
                      Display “b is the largest number”.
  Step 4: Stop.


    Flowchart : 


  Program: 





   Output: 



Comments

  1. its very helpful for me. keep posting.thnk u.

    ReplyDelete
    Replies
    1. i'm very happy that you liked my post. Thank you very much.

      Delete
  2. This is very easy and simplest method and thus is very easy to understand and helpful for me thanks for post this

    ReplyDelete
  3. Very simplest method.very good .Thank you😊😊

    ReplyDelete
  4. it helps me so much in my examination

    ReplyDelete
  5. Really helpful.
    Continue to post

    ReplyDelete
  6. It is very useful thank u so much for posting this

    ReplyDelete
  7. youtube.com/advice/honeyman/nostalgia-and-wasting-hours
    youtube.com/advice/honeyman/nostalgia-and-wasting-hours › youtube › youtube Apr 14, 2021 — Apr 14, youtube to mp3 convert 2021 What is youtube.com/advice/honeyman/nostalgia and wasting time on YouTube? If so, I suggest you make this my very first

    ReplyDelete
  8. Thank you so much!

    ReplyDelete
  9. It's really helpful please provide more. Keep ur hard work. Thank you

    ReplyDelete
  10. Thanks for helping me in exam

    ReplyDelete

Post a Comment

Popular posts from this blog

How to customize header part of storefront theme in wordpress?

Solution:  You can easily customize storefront theme from functions.php of storefront child theme. With the help of storefront_header hook you can do that. The following code is used to remove storefront header default features- add_action("after_setup_theme", "storefront_child_header_remove"); function storefront_child_header_remove() {     remove_action("storefront_header","storefront_site_branding",20);     remove_action("storefront_header","storefront_secondary_navigation",30);     remove_action("storefront_header","storefront_product_search",40);     remove_action("storefront_header","storefront_primary_navigation_wrapper",42);     remove_action("storefront_header","storefront_primary_navigation",50);     remove_action("storefront_header","storefront_header_cart",60);     remove_action("storefront_header","storefront_pri

How to remove woocommerce checkout fields?

Ans :    In WooCommerce there is no built-in function to remove checkout fields and billing details heading from checkout page. So we remove these fields pragmatically using hooks supplied by Woocommerce. What you need to do is open your child theme's functions.php file and write the following code. functions.php // Removing checkout fields add_filter( 'woocommerce_checkout_fields' , 'wc_remove_checkout_fields' ); function wc_remove_checkout_fields( $fields ) {     unset($fields['billing']['billing_first_name']);     unset($fields['billing']['billing_last_name']);     unset($fields['billing']['billing_company']);     unset($fields['billing']['billing_address_1']);     unset($fields['billing']['billing_address_2']);     unset($fields['billing']['billing_city']);     unset($fields['billing']['billing_postcode']);     unset($fields['bil