<?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: Jothiganesh Guntu</title>
    <description>The latest articles on DEV Community by Jothiganesh Guntu (@jothiganesh_guntu_).</description>
    <link>https://dev.to/jothiganesh_guntu_</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%2F3325857%2F2be5f269-6b5e-4d6c-ab2d-9e9192ecb27a.png</url>
      <title>DEV Community: Jothiganesh Guntu</title>
      <link>https://dev.to/jothiganesh_guntu_</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/jothiganesh_guntu_"/>
    <language>en</language>
    <item>
      <title>Calculator V3 – AI Edition 🧮🤖</title>
      <dc:creator>Jothiganesh Guntu</dc:creator>
      <pubDate>Sun, 06 Jul 2025 13:12:12 +0000</pubDate>
      <link>https://dev.to/jothiganesh_guntu_/calculator-v3-ai-edition-2639</link>
      <guid>https://dev.to/jothiganesh_guntu_/calculator-v3-ai-edition-2639</guid>
      <description>&lt;p&gt;🚀 Just launched my Calculator V3 – AI Edition 🧮🤖&lt;/p&gt;

&lt;p&gt;This version of my calculator project uses the OpenAI GPT API to answer math questions in natural language. No more complex syntax — just type "What is 5 plus 6?" and get an instant answer.&lt;/p&gt;

&lt;p&gt;🔧 Built with:&lt;/p&gt;

&lt;p&gt;Python + OpenAI API&lt;/p&gt;

&lt;p&gt;Clean CLI-based interface&lt;/p&gt;

&lt;p&gt;AI prompts for math reasoning&lt;/p&gt;

&lt;p&gt;📂 Check it out on GitHub:&lt;br&gt;
🔗 &lt;a href="https://github.com/logicCrafter320/calculator-v3-ai" rel="noopener noreferrer"&gt;https://github.com/logicCrafter320/calculator-v3-ai&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I’m currently exploring how AI agents can be integrated into real-world utilities. More to come soon!&lt;/p&gt;

&lt;h1&gt;
  
  
  Python #OpenAI #AIProjects #GitHub #GPT #DevJourney
&lt;/h1&gt;

</description>
      <category>python</category>
      <category>openai</category>
      <category>cli</category>
      <category>ai</category>
    </item>
    <item>
      <title>"I Built a Calculator in C (CLI &amp; GTK GUI) — My Learning Journey"</title>
      <dc:creator>Jothiganesh Guntu</dc:creator>
      <pubDate>Sat, 05 Jul 2025 14:00:05 +0000</pubDate>
      <link>https://dev.to/jothiganesh_guntu_/i-built-a-calculator-in-c-cli-gtk-gui-my-learning-journey-1i26</link>
      <guid>https://dev.to/jothiganesh_guntu_/i-built-a-calculator-in-c-cli-gtk-gui-my-learning-journey-1i26</guid>
      <description>&lt;h1&gt;
  
  
  🚀 I Built a Command-Line Calculator in C (v1 &amp;amp; v2) — Now I’m Working on a GTK GUI Version (v3)
&lt;/h1&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fyv4ju2xohag9hk4d3w1c.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fyv4ju2xohag9hk4d3w1c.png" alt="Image description" width="800" height="533"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;👋 Hi! I’m &lt;strong&gt;Guntu Jothi Ganesh&lt;/strong&gt;, a 18-year-old self-taught developer with a growing passion for system-level programming and open-source. I recently completed &lt;strong&gt;two versions&lt;/strong&gt; of a command-line calculator using &lt;strong&gt;C&lt;/strong&gt;, and now I'm building a &lt;strong&gt;GUI version using GTK+ 3&lt;/strong&gt; on Windows.&lt;/p&gt;

&lt;p&gt;This post is a quick showcase of my progress, what I’ve learned, and what I’m working toward.&lt;/p&gt;




&lt;h2&gt;
  
  
  🛠️ What I Built
&lt;/h2&gt;

&lt;h3&gt;
  
  
  🔹 Version 1: Basic Calculator
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Operates with &lt;code&gt;+&lt;/code&gt;, &lt;code&gt;-&lt;/code&gt;, &lt;code&gt;*&lt;/code&gt;, &lt;code&gt;/&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Takes two inputs and an operator&lt;/li&gt;
&lt;li&gt;Displays a result with simple output&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  🔹 Version 2: Improved CLI Calculator
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;🔁 Added a loop for continuous calculations&lt;/li&gt;
&lt;li&gt;❌ Checks for divide-by-zero&lt;/li&gt;
&lt;li&gt;🎯 Cleaner input/output formatting&lt;/li&gt;
&lt;li&gt;🧹 Graceful exit&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;📂 GitHub: &lt;a href="https://github.com/logicCrafter320/calculator_v2.c" rel="noopener noreferrer"&gt;calculator_v2.c&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  🧩 Now Building: &lt;strong&gt;Version 3 - GUI Calculator with GTK&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;I’m currently working on a &lt;strong&gt;graphical calculator using GTK+&lt;/strong&gt; — built in C with a nice interface, buttons for input, and result display in a GUI window.&lt;/p&gt;

&lt;h3&gt;
  
  
  GTK Features in Progress:
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;🖱️ Buttons for digits and operations&lt;/li&gt;
&lt;li&gt;🪟 GTK window with layout design&lt;/li&gt;
&lt;li&gt;🧠 Future plan: scientific operations (log, sin, cos, etc.)&lt;/li&gt;
&lt;li&gt;💡 Learning how to use GTK in &lt;strong&gt;MSYS2 on Windows&lt;/strong&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;📂 GitHub (work-in-progress): &lt;a href="https://github.com/logicCrafter320/gtk_calculator_v3" rel="noopener noreferrer"&gt;gtk_calculator_v3&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  🔍 What I’ve Learned So Far
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Using &lt;code&gt;switch-case&lt;/code&gt;, input handling, and loops in C&lt;/li&gt;
&lt;li&gt;How to avoid &lt;code&gt;scanf&lt;/code&gt; pitfalls&lt;/li&gt;
&lt;li&gt;Writing readable, maintainable C code&lt;/li&gt;
&lt;li&gt;Compiling GTK projects with &lt;code&gt;gcc&lt;/code&gt; and &lt;code&gt;pkg-config&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Publishing releases and managing GitHub repos&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  🎯 What’s Next?
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Polish the GTK interface and layout&lt;/li&gt;
&lt;li&gt;Add scientific calculator functions&lt;/li&gt;
&lt;li&gt;Package it cleanly with README, screenshots, and instructions&lt;/li&gt;
&lt;li&gt;Start contributing to beginner open-source C projects&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  📣 I'd Love Your Feedback!
&lt;/h2&gt;

&lt;p&gt;If you’re a C dev, GTK user, or just exploring programming, I’d love to hear your thoughts and suggestions. Feel free to drop a comment or check out my GitHub!&lt;/p&gt;




&lt;h2&gt;
  
  
  🔗 Connect with Me
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;GitHub: &lt;a href="https://github.com/logicCrafter320" rel="noopener noreferrer"&gt;logicCrafter320&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Reddit: [u/logicCrafter320](&lt;a href="https://www.reddit.com/user/Shoddy_Economy_1646/" rel="noopener noreferrer"&gt;https://www.reddit.com/user/Shoddy_Economy_1646/&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>programming</category>
      <category>beginners</category>
      <category>tutorial</category>
      <category>learning</category>
    </item>
  </channel>
</rss>
