Simple Program Book Entry Using structure Variable in C++ Programming
Simple Program Book Entry Using structure Variable
#include<iostream.h>
#include<stdio.h>
struct books {
char name[20], author[20];
} a[50];
int main() {
int i, n;
cout << "No Of Books[less than 50]:";
cin>>n;
cout << "Enter the book details\n";
cout << "----------------------\n";
for (i = 0; i < n; i++) {
cout << "Details of Book No " << i + 1 << "\n";
cout << "Book Name :";
cin >> a[i].name;
cout << "Book Author :";
cin >> a[i].author;
cout << "----------------------\n";
}
cout << "================================================\n";
cout << " S.No\t| Book Name\t|author\n";
cout << "=====================================================";
for (i = 0; i < n; i++) {
cout << "\n " << i + 1 << "\t|" << a[i].name << "\t| " << a[i].author;
}
cout << "\n=================================================";
return 0;
}
Sample Output
No Of Books[less than 50]:2
Enter the book details
----------------------
Details of Book No 1
Book Name :Programming
Book Author :Dromy
Details of Book No 2
Book Name :C
Book Author :Byron
=======================================================
S.No | Book Name |author
=======================================================
1 |Programming | Dromy
2 |C | Byron
=======================================================
Structure and Union In C++
Read More Articles
- Simple Merge Sort Program in C++
- Scope Resolution Operator In C++
- Simple Program for Virtual Functions Using C++ Programming
- Simple Class Example Program For Find Prime Number In C++
- Simple Example Program For Parameterized Constructor In C++
- Define Constructor in Outside Class Example Program In C++
- Simple Program for Function Overloading Using C++ Programming
- Simple Example Program For Copy Constructor In C++
- Simple Program for Single Inheritance Using C++ Programming
- Simple Program for Inline Function without Class Using C++ Programming
- Factorial Using Function Example Program In C++
- Simple Addition ( Add Two Integers ) Example Program
- Simple Example Program For Constructor Overloading In C++
- Simple Example Program for Inline Function Using C++ Programming
- Simple Example Program For Constructor In C++
- Simple Program for Read user Input Using cin
- Factorial Using Loop Example Program In C++
- Simple Stack Program in C++ Programming
- Simple Program for Friend Function Using C++ Programming
- Simple Program for Static Data and Member Function Using C++ Programming
- Simple Program for Unary Operator Overloading Using C++ Programming
- Do While Loop Example Program In C++
- Simple Program for Multiple Inheritance Using C++ Programming
- Simple Copy Constructor Example Program For Find Factorial In C++
- Simple Program for Exception Handling Divide by zero Using C++ Programming