Skip to content

Latest commit

 

History

History
15 lines (15 loc) · 288 Bytes

File metadata and controls

15 lines (15 loc) · 288 Bytes

CodeBasic

The repository is to provide solutions to the basic coding/programming //to add two numbers #include<iostream.h> #include<conio.h> void main() { clrscr(); int a, b, sum; cout<<"Enter two number :"; cin>>a>>b; sum=a+b; cout<<"Sum of the two number is "<<sum; getch(); }