<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: TELAPOKA</title>
    <description>The latest articles on DEV Community by TELAPOKA (@telapoka).</description>
    <link>https://dev.to/telapoka</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F2928831%2F1831fb44-4563-4906-91e0-76a3a27c23a7.png</url>
      <title>DEV Community: TELAPOKA</title>
      <link>https://dev.to/telapoka</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/telapoka"/>
    <language>en</language>
    <item>
      <title>Code is a fraction calculator.</title>
      <dc:creator>TELAPOKA</dc:creator>
      <pubDate>Mon, 10 Mar 2025 16:33:06 +0000</pubDate>
      <link>https://dev.to/telapoka/code-is-a-fraction-calculator-4l96</link>
      <guid>https://dev.to/telapoka/code-is-a-fraction-calculator-4l96</guid>
      <description>&lt;h1&gt;
  
  
  include
&lt;/h1&gt;

&lt;h1&gt;
  
  
  include
&lt;/h1&gt;

&lt;p&gt;int gcd(int a, int b) {&lt;br&gt;
    while (b!=0){&lt;br&gt;
        int temp=b;&lt;br&gt;
        b=a%b;&lt;br&gt;
        a=temp;&lt;br&gt;
    }&lt;br&gt;
    return a &amp;gt; 0 ? a : -a;&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;int main()&lt;br&gt;
{&lt;br&gt;
    int number;&lt;br&gt;
    printf("Enter a number for my runtime.\nNumber :");&lt;br&gt;
    scanf("%d",&amp;amp;number);&lt;br&gt;
    printf("Example:\n a\n---\n b\n c\n---\n d\nNow...!\n");&lt;br&gt;
    while(number--)&lt;br&gt;
    {&lt;br&gt;
        int up1,du1,up2,du2,upnum,dunnum;&lt;br&gt;
        char operaton,dibi1,dibi2;&lt;br&gt;
        printf("Type your operation like 1/2 (+-&lt;em&gt;/) 3/4\nOperation :");&lt;br&gt;
        scanf("%d %c %d %c %d %c %d",&amp;amp;up1, &amp;amp;dibi1, &amp;amp;du1, &amp;amp;operaton, &amp;amp;up2, &amp;amp;dibi2, &amp;amp;du2);&lt;br&gt;
        if(operaton=='+')&lt;br&gt;
        {&lt;br&gt;
            upnum=up1*du2+up2*du1;&lt;br&gt;
            dunnum=du1*du2;&lt;br&gt;
        }&lt;br&gt;
        else if(operaton=='-')&lt;br&gt;
        {&lt;br&gt;
            upnum=up1*du2-up2*du1;&lt;br&gt;
            dunnum=du1*du2;&lt;br&gt;
        }&lt;br&gt;
        else if(operaton=='&lt;/em&gt;')&lt;br&gt;
        {&lt;br&gt;
            upnum=up1*up2;&lt;br&gt;
            dunnum=du1*du2;&lt;br&gt;
        }&lt;br&gt;
        else if(operaton=='/')&lt;br&gt;
        {&lt;br&gt;
            upnum = up1 * du2;&lt;br&gt;
            dunnum = up2 * du1;&lt;br&gt;
        }&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;    int divitior=gcd(upnum , dunnum);
    int simple_upnumber = upnum/divitior;
    int simple_dunnumber = dunnum/divitior;
    printf("%d/%d = %d/%d\n",upnum,dunnum,simple_upnumber,simple_dunnumber);
}



return 0;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;}&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>programming</category>
      <category>node</category>
    </item>
    <item>
      <title>when you know deeply and perfectly how to work a machine properly and you can also control and feel it. remember this is not a machine this is a part of your body.</title>
      <dc:creator>TELAPOKA</dc:creator>
      <pubDate>Mon, 10 Mar 2025 16:04:12 +0000</pubDate>
      <link>https://dev.to/telapoka/when-you-know-deeply-and-perfectly-how-to-work-a-machine-properly-and-you-can-also-control-and-458f</link>
      <guid>https://dev.to/telapoka/when-you-know-deeply-and-perfectly-how-to-work-a-machine-properly-and-you-can-also-control-and-458f</guid>
      <description></description>
      <category>programming</category>
    </item>
  </channel>
</rss>
