Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #72.8K
1 Posted Topic
Re: #include<stdio.h> #include<conio.h> void main() { int a,d,c,b,ch; int add(int a,int b=20,int c=40); int sub(int a,int b=39,int c=5); int div(int a,int b=4); int multi(int a,int b=10,int c=5); clrscr(); cout<<"\n enter the number:"; cin>>a>>b>>c; cout<<"\n 1.add 2,sub 3.div 4.multi"; cout<<"enter a choice"; cin>>ch; switch(ch) { case 1: cout<<"\n one argument is passed"; … |
The End.