define a string class. overload the operator == to compare
two strings

Answers were Sorted based on User's Feedback



define a string class. overload the operator == to compare two strings..

Answer / mostafizur rahman

define a string class. overload the operator == to compare
two strings

Is This Answer Correct ?    59 Yes 30 No

define a string class. overload the operator == to compare two strings..

Answer / moin khan

#include <iostream>
using namespace std;
#include <string.h>
class String{
private:
enum { SZ = 80 };
char str[SZ];
public:
String(){ strcpy(str, ""); }
String( char s[] ){ strcpy(str, s); }
void display() const{ cout << str; }
void getstr(){ cin.get(str, SZ); }
bool operator == (String ss) const{
return ( strcmp(str, ss.str)==0 ) ? true : false;
}
};
int main(){
String s1 = "yes";
String s2 = "no";
String s3;

cout << "\nEnter 'yes' or 'no': ";
s3.getstr();

if(s3==s1)
cout << "You typed yes\n";
else if(s3==s2)
cout << "You typed no\n";
else
cout << "You didn't follow instructions\n";
return 0;
}

Is This Answer Correct ?    24 Yes 3 No

Post New Answer

More OOPS Interview Questions

what is runtime polymorphism? For the 5 marks.

3 Answers  


when to use 'mutable' keyword and when to use 'const cast' in c++

0 Answers   TCS,


Why is polymorphism important in oop?

0 Answers  


What is protected in oop?

0 Answers  


What is overriding in oops?

0 Answers  






Write a program to demonstrate the use of 'Composition' in C++

2 Answers  


what is the 3 types of system development life cycle

0 Answers  


What is coupling in oops?

0 Answers  


Write a C++ program without using any loop (if, for, while etc) to print prime numbers from 1 to 100 and 100 to 1 (Do not use 200 print statements!!!)

0 Answers   HCL,


What are the 4 pillars of oop?

0 Answers  


What is abstraction?

9 Answers  


What is constructor overloading in oop?

0 Answers  


Categories