// Write a program to find the length of the string “refrigerator”.
#include
#include
#include
using namespace std;
main()
{
string name =“refrigerator”;
int length =strlen(name); // shows Error in this line
cout<<"the size of refrig. is :=="<<length<<endl;
return 0;
}