Can someone plzzz check this code?
#include<iostream> using namespace std; int main() { string word[5]; int i; for(i=0; i<5; i++) { cout<<"Enter the word"<<i<<endl; cin>>word[i]; } for(i=1; i<6; i++) { cout<<i<<"."<<word[i]<<endl; } system("PAUSE"); return 0; }
did you #include <string> ?
The question is Write a C++ program to enter "Object Oriented Programming Using C++" using keyboard and display it in the console as the following style 1.Object 2.Oriented 3.Programming 4.Using 5.C++
No. I didn't include it.
Also, since you loop from i=1 to 6 in the second loop, you will be referencing memory outside the array. If you make it from i=0 to 4 (i.e. i=0; i<5) it will work
Perfect nw. Thanxxxxxxxxxxxx a lt.
Join our real-time social learning platform and learn together with your friends!