{"id":86,"date":"2024-12-24T13:20:26","date_gmt":"2024-12-24T13:20:26","guid":{"rendered":"https:\/\/alpeshconnect.in\/blog\/?p=86"},"modified":"2024-12-24T13:20:26","modified_gmt":"2024-12-24T13:20:26","slug":"find-the-biggest-of-three-numbers-in-c-language","status":"publish","type":"post","link":"https:\/\/alpeshconnect.in\/blog\/2024\/12\/24\/find-the-biggest-of-three-numbers-in-c-language\/","title":{"rendered":"Find the biggest of three numbers in C Language"},"content":{"rendered":"\n<p>Find the biggest of three numbers in C Language<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#include&lt;stdio.h>\n#include&lt;conio.h>\nvoid main()\n{\nint a,b,c;\nclrscr();\nprintf(\"Enter 3 Nos :\");\nscanf(\"%d%d%d\",&amp;a,&amp;b,&amp;c);\nif(a>b &amp;&amp; a>c)\n{\nprintf(\"%d is Bigger\",a);\n}\nif(b>a &amp;&amp; b>c)\n{\nprintf(\"%d is Bigger\",b);\n}\nif(c>a &amp;&amp; c>b)\n{\nprintf(\"%d is Bigger\",c);\n}\ngetch();\n}<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Find the biggest of three numbers in C Language<\/p>\n","protected":false},"author":1,"featured_media":82,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3,23],"tags":[24],"class_list":["post-86","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-bca","category-c-language","tag-c-language"],"_links":{"self":[{"href":"https:\/\/alpeshconnect.in\/blog\/wp-json\/wp\/v2\/posts\/86","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/alpeshconnect.in\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/alpeshconnect.in\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/alpeshconnect.in\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/alpeshconnect.in\/blog\/wp-json\/wp\/v2\/comments?post=86"}],"version-history":[{"count":1,"href":"https:\/\/alpeshconnect.in\/blog\/wp-json\/wp\/v2\/posts\/86\/revisions"}],"predecessor-version":[{"id":87,"href":"https:\/\/alpeshconnect.in\/blog\/wp-json\/wp\/v2\/posts\/86\/revisions\/87"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/alpeshconnect.in\/blog\/wp-json\/wp\/v2\/media\/82"}],"wp:attachment":[{"href":"https:\/\/alpeshconnect.in\/blog\/wp-json\/wp\/v2\/media?parent=86"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/alpeshconnect.in\/blog\/wp-json\/wp\/v2\/categories?post=86"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/alpeshconnect.in\/blog\/wp-json\/wp\/v2\/tags?post=86"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}