write a program in c++ to overload the function add (s1,s2)
where s1 and s2 are integers and floating point values.
Answer Posted / deepa mathur
include <iostream.h>
void add (int s1, int s2)
{
int s3;
s3= s1 + s2;
cout<<"sum of 2 no. is= "<< s3;
}
void add (float s1, float s2)
{
float s3;
s3 = s1 + s2;
cout<<" sum of 2 no. is= "<< s3;
}
void main
{
void add (int a, int b);
void add (float a, float b);
add(30, 20);
add (30.5, 56.7);
getch();
}
| Is This Answer Correct ? | 47 Yes | 20 No |
Post New Answer View All Answers
What is inheritance and how many types of inheritance?
This program numbers the lines found in a text file. Write a program that reads text from a file and outputs each line preceded by a line number. Print the line number right-adjusted in a field of 3 spaces. Follow the line number with a colon, then one space, then the text of the line. You should get a character at a time and write code to ignore leading blanks on each line. You may assume that the lines are short enough to fit within a line on the screen. Otherwise, allow default printer or screen output behavior if the line is too long (i.e., wrap or truncate). A somewhat harder version determines the number of spaces needed in the field for the line numbers by counting lines before processing the lines of the file. This version of the program should insert a new line after the last complete word that will fit within a 72-character line.
How does polymorphism work?
What is persistence in oop?
What are main features of oop?
What is solid in oops?
What is the difference between encapsulation and polymorphism?
Why it is called runtime polymorphism?
i got a backdoor offer in process global,Bangalore..Can i work with it?
What is abstract class in oops?
if i have same function with same number of argument but defined in different files. Now i am adding these two files in a third file and calling this function . which will get called and wht decide the precedence?
What are the 3 pillars of oop?
i=20;k=0;
for(j=1;k-i;k+=j<10?4:3)
{
cout< How do you achieve polymorphism? Can static class have constructor?