Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 390 Bytes

README.md

File metadata and controls

22 lines (17 loc) · 390 Bytes

Basic-C-Calculator

This is a basic c calculator by some beginner and professionals programmers.

The following can be accepted via scanf functions; the inputs can be multiple of single input;

====>>>>> sahilahmed0707 Added Divide, power, multiply functions.

/#include<stdio.h> int main() { int a=0,b=1,c,i; for(i=1;i<=12;i++) { printf("%d\n",a); c=a+b; a=b; b=c; } }/