English
Tamil Nadu Board of Secondary EducationHSC Science Class 11

Write the output of the following c++ program #include #include #include #include using namespace std; struct books { char name[20], author[20]; } a[2]; int main() - Computer Science

Advertisements
Advertisements

Question

Write the output of the following c++ program.

#include<iostream>
#include<stdio>
#include<string>
#include<conio>
using namespace std;
struct books {
char name[20], author[20];
} a[2];
int main()
{ cout<< "Details of Book No " << 1 << "\n"; cout<< "------------------------\n";
cout<< "Book Name :"<<strcpy(a[0].name,"Programming ")<<endl; cout<< "Book Author :"<<strcpy(a[0].author,"Dromy")<<endl; cout<< "\nDetails of Book No " << 2 << "\n";
cout<< "Book Name :"<<strcpy(a[1].name,"C++programming" )<<endl; cout<< "Book Author :"<<strcpy(a[1].author,"BjarneStroustrup ")<<endl; cout<<"\n\n";
cout<< "================================================\n";
cout<< " S.No\t| Book Name\t|author\n"; cout<< "====================================================";
for (int i = 0; i < 2; i++) {
cout<< "\n " << i + 1 << "\t|" << a[i].name << "\t| " << a[i].author;
}
cout<< "\n=================================================";
return 0;
}

Short Note

Solution

Output:
Details of Book No. 1
Book name : Programming
Book author : Dromy
Details of Book No. 2
Book Name : C++ Programming
Book Author : Bjame Stroustrup
1 Iprogrammingl Dromy
2| C++ Programming | Bjame Stroustmp

shaalaa.com
  Is there an error in this question or solution?
Chapter 12: Arrays and Structures - Evaluation - Section - D [Page 225]

APPEARS IN

Samacheer Kalvi Computer Science [English] Class 11 TN Board
Chapter 12 Arrays and Structures
Evaluation - Section - D | Q 3. | Page 225
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×