{"id":28093,"date":"2022-12-28T14:09:54","date_gmt":"2022-12-28T08:39:54","guid":{"rendered":"https:\/\/jassweb.com\/solved\/solved-why-am-i-not-getting-the-remainder-for-m\/"},"modified":"2022-12-28T14:09:54","modified_gmt":"2022-12-28T08:39:54","slug":"solved-why-am-i-not-getting-the-remainder-for-m","status":"publish","type":"post","link":"https:\/\/jassweb.com\/solved\/solved-why-am-i-not-getting-the-remainder-for-m\/","title":{"rendered":"[Solved] Why am I not getting the remainder for \u201cm\u201d?"},"content":{"rendered":"<p> [ad_1]<br \/>\n<\/p>\n<div id=\"answer-59777587\" class=\"answer js-answer accepted-answer js-accepted-answer\" data-answerid=\"59777587\" data-parentid=\"59777488\" data-score=\"0\" data-position-on-page=\"1\" data-highest-scored=\"1\" data-question-has-accepted-highest-score=\"1\" itemprop=\"acceptedAnswer\" itemscope itemtype=\"https:\/\/schema.org\/Answer\">\n<div class=\"post-layout\">\n<div class=\"votecell post-layout--left\"><\/div>\n<div class=\"answercell post-layout--right\">\n<div class=\"s-prose js-post-body\" itemprop=\"text\">\n<p>There are many ways to do this, this is the one closest to your own code:<\/p>\n<pre class=\"lang-c prettyprint-override\"><code>#include &lt;stdio.h&gt;\n\nint main() {\n\n    int y, m;\n\n    printf(\"Input number of months: \");\n    fflush(stdout);\n    scanf(\"%d\", &amp;y);\n    m = y % 12;\n    y = y \/ 12;\n\n    printf(\" %i Year(s) \\n %i Month(s)\" , y, m);\n    return 0;\n}\n<\/code><\/pre>\n<p>The key issue is that you updated the value of <code>y<\/code> before <code>m<\/code> had a chance to look at it. Note the order of your <code>y=...<\/code> and <code>m=...<\/code>. If you do <code>y=y\/12<\/code> first, that would update <code>y<\/code>&#8216;s value to the number of years and the remainder information is lost at this step and <code>m<\/code> would always be 0. By getting <code>m<\/code> from the <code>y<\/code> that&#8217;s from the user&#8217;s input first, you avoid that issue.<\/p>\n<p>Another minor issue is that there is no need to cast the value from <code>y\/12<\/code> to be <code>int<\/code> since you are assigning that value to <code>y<\/code> which is of type <code>int<\/code> in the first place. Same applies to when you calculate <code>m<\/code>, where a typo is also present.<\/p>\n<p>As for the use of <code>fflush<\/code>, you can refer to this question for details. Compile your code with\/without this line to see the difference.<\/p>\n<\/p><\/div>\n<div class=\"mt24\"><\/div>\n<\/div>\n<p>            <span class=\"d-none\" itemprop=\"commentCount\">3<\/span> <\/p><\/div>\n<\/div>\n<p>[ad_2]<\/p>\n<p>solved Why am I not getting the remainder for \u201cm\u201d? <\/p>\n","protected":false},"excerpt":{"rendered":"<p>[ad_1] There are many ways to do this, this is the one closest to your own code: #include &lt;stdio.h&gt; int main() { int y, m; printf(&#8220;Input number of months: &#8220;); fflush(stdout); scanf(&#8220;%d&#8221;, &amp;y); m = y % 12; y = y \/ 12; printf(&#8221; %i Year(s) \\n %i Month(s)&#8221; , y, m); return 0; } &#8230; <a title=\"[Solved] Why am I not getting the remainder for \u201cm\u201d?\" class=\"read-more\" href=\"https:\/\/jassweb.com\/solved\/solved-why-am-i-not-getting-the-remainder-for-m\/\" aria-label=\"More on [Solved] Why am I not getting the remainder for \u201cm\u201d?\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[320],"tags":[324],"class_list":["post-28093","post","type-post","status-publish","format-standard","hentry","category-solved","tag-c"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>[Solved] Why am I not getting the remainder for \u201cm\u201d? - JassWeb<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/jassweb.com\/solved\/solved-why-am-i-not-getting-the-remainder-for-m\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"[Solved] Why am I not getting the remainder for \u201cm\u201d? - JassWeb\" \/>\n<meta property=\"og:description\" content=\"[ad_1] There are many ways to do this, this is the one closest to your own code: #include &lt;stdio.h&gt; int main() { int y, m; printf(&quot;Input number of months: &quot;); fflush(stdout); scanf(&quot;%d&quot;, &amp;y); m = y % 12; y = y \/ 12; printf(&quot; %i Year(s) n %i Month(s)&quot; , y, m); return 0; } ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/jassweb.com\/solved\/solved-why-am-i-not-getting-the-remainder-for-m\/\" \/>\n<meta property=\"og:site_name\" content=\"JassWeb\" \/>\n<meta property=\"article:published_time\" content=\"2022-12-28T08:39:54+00:00\" \/>\n<meta name=\"author\" content=\"Kirat\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Kirat\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-why-am-i-not-getting-the-remainder-for-m\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-why-am-i-not-getting-the-remainder-for-m\/\"},\"author\":{\"name\":\"Kirat\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\"},\"headline\":\"[Solved] Why am I not getting the remainder for \u201cm\u201d?\",\"datePublished\":\"2022-12-28T08:39:54+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-why-am-i-not-getting-the-remainder-for-m\/\"},\"wordCount\":172,\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"keywords\":[\"c++\"],\"articleSection\":[\"Solved\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-why-am-i-not-getting-the-remainder-for-m\/\",\"url\":\"https:\/\/jassweb.com\/solved\/solved-why-am-i-not-getting-the-remainder-for-m\/\",\"name\":\"[Solved] Why am I not getting the remainder for \u201cm\u201d? - JassWeb\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#website\"},\"datePublished\":\"2022-12-28T08:39:54+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-why-am-i-not-getting-the-remainder-for-m\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/jassweb.com\/solved\/solved-why-am-i-not-getting-the-remainder-for-m\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-why-am-i-not-getting-the-remainder-for-m\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/jassweb.com\/solved\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[Solved] Why am I not getting the remainder for \u201cm\u201d?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/jassweb.com\/solved\/#website\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"name\":\"JassWeb\",\"description\":\"Build High-quality Websites\",\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/jassweb.com\/solved\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\",\"name\":\"Jass Web\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"contentUrl\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"width\":693,\"height\":132,\"caption\":\"Jass Web\"},\"image\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\",\"name\":\"Kirat\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586\",\"contentUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586\",\"caption\":\"Kirat\"},\"sameAs\":[\"http:\/\/jassweb.com\"],\"url\":\"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"[Solved] Why am I not getting the remainder for \u201cm\u201d? - JassWeb","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/jassweb.com\/solved\/solved-why-am-i-not-getting-the-remainder-for-m\/","og_locale":"en_US","og_type":"article","og_title":"[Solved] Why am I not getting the remainder for \u201cm\u201d? - JassWeb","og_description":"[ad_1] There are many ways to do this, this is the one closest to your own code: #include &lt;stdio.h&gt; int main() { int y, m; printf(\"Input number of months: \"); fflush(stdout); scanf(\"%d\", &amp;y); m = y % 12; y = y \/ 12; printf(\" %i Year(s) n %i Month(s)\" , y, m); return 0; } ... Read more","og_url":"https:\/\/jassweb.com\/solved\/solved-why-am-i-not-getting-the-remainder-for-m\/","og_site_name":"JassWeb","article_published_time":"2022-12-28T08:39:54+00:00","author":"Kirat","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Kirat","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/jassweb.com\/solved\/solved-why-am-i-not-getting-the-remainder-for-m\/#article","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/solved-why-am-i-not-getting-the-remainder-for-m\/"},"author":{"name":"Kirat","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31"},"headline":"[Solved] Why am I not getting the remainder for \u201cm\u201d?","datePublished":"2022-12-28T08:39:54+00:00","mainEntityOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-why-am-i-not-getting-the-remainder-for-m\/"},"wordCount":172,"publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"keywords":["c++"],"articleSection":["Solved"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/jassweb.com\/solved\/solved-why-am-i-not-getting-the-remainder-for-m\/","url":"https:\/\/jassweb.com\/solved\/solved-why-am-i-not-getting-the-remainder-for-m\/","name":"[Solved] Why am I not getting the remainder for \u201cm\u201d? - JassWeb","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/#website"},"datePublished":"2022-12-28T08:39:54+00:00","breadcrumb":{"@id":"https:\/\/jassweb.com\/solved\/solved-why-am-i-not-getting-the-remainder-for-m\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/jassweb.com\/solved\/solved-why-am-i-not-getting-the-remainder-for-m\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/jassweb.com\/solved\/solved-why-am-i-not-getting-the-remainder-for-m\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/jassweb.com\/solved\/"},{"@type":"ListItem","position":2,"name":"[Solved] Why am I not getting the remainder for \u201cm\u201d?"}]},{"@type":"WebSite","@id":"https:\/\/jassweb.com\/solved\/#website","url":"https:\/\/jassweb.com\/solved\/","name":"JassWeb","description":"Build High-quality Websites","publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/jassweb.com\/solved\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/jassweb.com\/solved\/#organization","name":"Jass Web","url":"https:\/\/jassweb.com\/solved\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/","url":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","contentUrl":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","width":693,"height":132,"caption":"Jass Web"},"image":{"@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31","name":"Kirat","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/","url":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586","caption":"Kirat"},"sameAs":["http:\/\/jassweb.com"],"url":"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/"}]}},"_links":{"self":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/28093","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/comments?post=28093"}],"version-history":[{"count":0,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/28093\/revisions"}],"wp:attachment":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/media?parent=28093"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/categories?post=28093"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/tags?post=28093"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}