{"id":2341,"date":"2024-11-06T12:08:26","date_gmt":"2024-11-06T12:08:26","guid":{"rendered":"https:\/\/itnotes.apjsoftwares.in\/?p=2341"},"modified":"2024-11-06T12:16:54","modified_gmt":"2024-11-06T12:16:54","slug":"for","status":"publish","type":"post","link":"https:\/\/itnotes.apjsoftwares.in\/index.php\/2024\/11\/06\/for\/","title":{"rendered":"Explain the for keyword"},"content":{"rendered":"\n<p>The \u201cfor\u201d keyword is used to declare a for-loop. A for-loop is a loop that is specified to run a certain amount of times.<\/p>\n\n\n\n<p>Below is the C program to demonstrate a for-loop:\u00a0<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\n#include &lt;stdio.h>\r\nint main()\r\n{\r\n  for (int i = 0; i &lt; 5; i++) \r\n  {\r\n    printf(\"%d \", i);\r\n  }\r\n  return 0;\r\n}\r\n<strong>\nOutput\r\n0 1 2 3 4 <\/strong>\n<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>The \u201cfor\u201d keyword is used to declare a for-loop. A for-loop is a loop that&#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\/2341"}],"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=2341"}],"version-history":[{"count":2,"href":"https:\/\/itnotes.apjsoftwares.in\/index.php\/wp-json\/wp\/v2\/posts\/2341\/revisions"}],"predecessor-version":[{"id":2343,"href":"https:\/\/itnotes.apjsoftwares.in\/index.php\/wp-json\/wp\/v2\/posts\/2341\/revisions\/2343"}],"wp:attachment":[{"href":"https:\/\/itnotes.apjsoftwares.in\/index.php\/wp-json\/wp\/v2\/media?parent=2341"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/itnotes.apjsoftwares.in\/index.php\/wp-json\/wp\/v2\/categories?post=2341"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/itnotes.apjsoftwares.in\/index.php\/wp-json\/wp\/v2\/tags?post=2341"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}