Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
Ranked #107.55K
~749 People Reached
Favorite Forums
Favorite Tags
c++ x 1

1 Posted Topic

Member Avatar for J☼E

/*Program to add two numbers*/ #include<iostream.h> #include<conio.h> void main() { int a,b; clrscr(); cout<<"\nEnter the value for a:"; cin>>a; cout<<"\nEnter the value for b:"; cin>>b; cout<<"\nThe sum of a and b is:"<<a+b; getch(); }

Member Avatar for NANDHINI G
-1
749

The End.