Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~203 People Reached
Favorite Forums
Favorite Tags
c++ x 1
Member Avatar for jalal hashmi

#include <iostream> #include <conio.h> using namespace std; void showSeats (void); char firstClass[2][6]; char busClass [5][6]; char ecoClass [6][6]; int main() { char seatType; int seatNum; char seatChar; // make all the seats available for(int i =0; i<6; i++) { for(int j =0;j<6;j++) { if(i<2) firstClass[i][j]='*'; if(i<5) busClass[i][j] = '*'; ecoClass …

Member Avatar for Ancient Dragon
0
203