{"id":2328,"date":"2024-11-06T11:37:37","date_gmt":"2024-11-06T11:37:37","guid":{"rendered":"https:\/\/itnotes.apjsoftwares.in\/?p=2328"},"modified":"2024-11-06T12:03:52","modified_gmt":"2024-11-06T12:03:52","slug":"do","status":"publish","type":"post","link":"https:\/\/itnotes.apjsoftwares.in\/index.php\/2024\/11\/06\/do\/","title":{"rendered":"Explain the do keyword"},"content":{"rendered":"\n<p>The do statement is used to declare a do-while loop. A do-while loop is a loop that executes once, and then checks it\u2019s condition to see if it should continue through the loop. After the first iteration, it will continue to execute the code while the condition is true.<\/p>\n\n\n\n<p>Below is the C program to demonstrate a do-while loop.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\n#include &lt;stdio.h&gt;\nint main() \n{\n  int i = 1;\n  do {\n    printf(\"%d \", i);\n    i++;\n  } while(i &lt;= 5);\n  \n  return 0;\n}<strong>\nOutput\n1 2 3 4 5 <\/strong><\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>The do statement is used to declare a do-while loop. A do-while loop is a&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[13],"tags":[],"_links":{"self":[{"href":"https:\/\/itnotes.apjsoftwares.in\/index.php\/wp-json\/wp\/v2\/posts\/2328"}],"collection":[{"href":"https:\/\/itnotes.apjsoftwares.in\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/itnotes.apjsoftwares.in\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/itnotes.apjsoftwares.in\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/itnotes.apjsoftwares.in\/index.php\/wp-json\/wp\/v2\/comments?post=2328"}],"version-history":[{"count":2,"href":"https:\/\/itnotes.apjsoftwares.in\/index.php\/wp-json\/wp\/v2\/posts\/2328\/revisions"}],"predecessor-version":[{"id":2336,"href":"https:\/\/itnotes.apjsoftwares.in\/index.php\/wp-json\/wp\/v2\/posts\/2328\/revisions\/2336"}],"wp:attachment":[{"href":"https:\/\/itnotes.apjsoftwares.in\/index.php\/wp-json\/wp\/v2\/media?parent=2328"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/itnotes.apjsoftwares.in\/index.php\/wp-json\/wp\/v2\/categories?post=2328"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/itnotes.apjsoftwares.in\/index.php\/wp-json\/wp\/v2\/tags?post=2328"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}