Skip to content

Instantly share code, notes, and snippets.

View lakshmip-create's full-sized avatar

lakshmip lakshmip-create

View GitHub Profile
@lakshmip-create
lakshmip-create / calc.c
Created October 26, 2025 13:54 — forked from btechmag/calc.c
Simple calculator program for beginners
#include<stdio.h>
int main(int argc, char const *argv[])
{
/* c program to implement calculater fetures*/
int a,b,add,sub,mul,div;
a=2,b=2;
printf("calculater fetures:\n");
add=a+b;
sub=a-b;
mul=a*b;
@lakshmip-create
lakshmip-create / Calc.py
Created October 25, 2025 16:29 — forked from IHEfty/Calc.py
Simple Python calculator program.
import tkinter as tk
class Calculator:
def __init__(self, root):
self.root = root
self.root.title("Calculator By IH Efty")
self.root.geometry("390x600")
self.root.resizable(0, 0)
self.expression = ""
@lakshmip-create
lakshmip-create / index.html
Created October 25, 2025 14:10 — forked from aviwarner/index.html
Simple Calculator - vanilla
<div class="calculator">
<div class="row">
<div class="button clear-button">C</div>
<div class="output"></div>
</div>
<div class="row">
<div class="button number">7</div>
<div class="button number">8</div>
<div class="button number">9</div>
<div class="button operator">+</div>