58 |
74 |
75 |
76 |
77 |
--------------------------------------------------------------------------------
/Projects/C Projects/Basic/ReadMe.md:
--------------------------------------------------------------------------------
1 | # C Programming Language Basic Projects
2 |
3 | C Programming Language Basic Projects goes here
4 |
--------------------------------------------------------------------------------
/Projects/C Projects/Basic/Tic Tac Toe Game/README.md:
--------------------------------------------------------------------------------
1 | # Tic Tac Toe Game Development using C
2 |
3 | You have probably played the Tic-Tac-Toe game to pass time during school hours. It’s fun when you play with paper and pencil. Here, we have developed a mini project in C Tic Tac Toe game.
4 |
5 | It is the same noughts and crosses or the Xs and Os, the other names for Tic-Tac-Toe.
6 |
7 | ### Function Used:
8 |
9 | I have divided this project into many functions, and below is a list of those functions.
10 | I have only described the gotoxy function in detail.
11 | Just go through the source code once, and other functions used are simple and easy to understand.
12 |
13 |
14 | - **void menu()** – In this mini project, this function displays the menu or welcome screen of this project.
15 | - **void go(int n)**
16 | - **void start_game()**
17 | - **void check_draw()**
18 | - **void draw_board()**
19 | - **void player_first()**
20 | - **void put_X_O(char ch, int pos)** – This function puts one of the numerical character you input into the respective position in Tic-Tac-Toe.
21 |
22 | `For example:`
23 | if you are playing with X and you input 2, the X will go to first row – second column.
24 | If you want to place X in third row – first column, you have to enter 7.
25 | And, it is similar for the other positions.
26 |
27 | - **void gotoxy (int x, int y)** – You need to understand this function as it is one of the most important one used in Tic Tac Toe in C.
28 | This function allows you to print text in any place of the screen.
29 |
30 | ### Images:
31 |
32 | - Menu
33 |
34 | 
35 |
36 | - PPlaying with X
37 |
38 | 
39 |
40 | - Game Draw
41 |
42 | 
43 |
44 |
45 |
46 |
47 |
5 |
6 | Basic Calculator in C++ (GUI)
7 |
8 |
9 |
10 |
11 |
12 | Basic Calculator in C++ (GUI) is a Calculator that can be used to perform all the basic arithmetical operations viz. addition, subtraction, multiplication and division.
13 |
14 | The calculator has a three dimensional shape, and so do all of its buttons. In other words, it looks like a real world, three-dimensional object rather than a two dimensional shape rendered in a program.
15 |
40 |
41 | - I will be using Code::Blocks in this Project, which I believe is a good place to start.
42 | - You can find the latest version of Codeblocks at http://www.codeblocks.org/.
43 | - Download the mingw-setup.exe file, which will install the text editor with a compiler.
44 |
45 |
download Project
46 |
47 | - Download the Basic Calculator ZIP file
48 | - run the `main.exe` file by double clicking it
49 |
50 |
51 |
52 |
53 | INFO
54 |
55 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
--------------------------------------------------------------------------------
/Projects/C++ Projects/Advance (GUI)/README.md:
--------------------------------------------------------------------------------
1 | # Advance C++ Programming Projects (GUI)
2 | Advanced C++ Programming Projects (GUI) hoes here
3 |
--------------------------------------------------------------------------------
/Projects/C++ Projects/Basic/A Login and Registration System/LoginAndRegistration.cpp:
--------------------------------------------------------------------------------
1 | // Autor : Nemonet TYP
2 | // Title: A Login and Registration System Programmed in C++
3 | // PROJECT FOR C/C++ PROGRAMMING TUTORIAL
4 |
5 |
6 | #include
7 | #include
8 | #include
9 | #include
10 | #include
11 | #include
12 | #include
13 | #include
14 | #include "login.cpp"
15 | using namespace std;
16 |
17 | int main()
18 | {
19 | login userLogin;
20 | string userChoice;
21 | cout << "\t\t\t_____________________________________________\n\n\n";
22 | cout << "\t\t\t Welcome to the NEMO 2023 Login! \n\n";
23 | cout << "\t\t\t_________ Menu __________\n\n";
24 | cout << "\t | Press 1 to LOGIN |" << endl;
25 | cout << "\t | Press 2 to REGISTER |" << endl;
26 | cout << "\t | Press 3 if you forgot PASSWORD |" << endl;
27 | cout << "\t | Press 4 to EXIT |" << endl;
28 | cout << "\n\t\t\t Please Enter your choice: ";
29 | cin >> userChoice;
30 | cout << endl;
31 |
32 | if (userChoice == "1")
33 | {
34 | userLogin.Login();
35 | main();
36 | }
37 | else if (userChoice == "2")
38 | {
39 | userLogin.Registration();
40 | main();
41 | }
42 | else if (userChoice == "3")
43 | {
44 | userLogin.ForgotPassword();
45 | main();
46 | }
47 | else if (userChoice == "4")
48 | {
49 | cout << "\t\t\t Goodbye! \n\n";
50 | }
51 | else
52 | {
53 | system("cls");
54 | cout << "\t\t\t Please select from the options above\n";
55 | main();
56 | }
57 | }
58 |
--------------------------------------------------------------------------------
/Projects/C++ Projects/Basic/A Login and Registration System/README.md:
--------------------------------------------------------------------------------
1 | # A Login and Registration System Programmed in C++
2 |
3 | A login and registration system programmed in C++ that utilizes password hashing so nobody but the user is able to see the password.
4 |
5 | ## This program does the following:
6 |
7 | - Allows users to register a username, password, and security question into a database (text file)
8 | - Once registered, the user's password and security question will be hashed and nobody but the user will be able to know their password/security question
9 | - Using the text file, the user can login using their username and password
10 | - Once logged in, the user has a special game they may play
11 | - If a user forgets their password, there is a forget password option for the user which will ask for their username, and if it exists, the security question will be asked for.
12 | If the answer matches with what is in the database, the user will be able to use a new password.
13 |
14 |
15 |
16 |
17 |
13 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
--------------------------------------------------------------------------------
/Projects/C++ Projects/Basic/Calculate CGPA and GPA/main.cpp:
--------------------------------------------------------------------------------
1 | /*This C++ PROGRAM is developed by NemonET TYP and
2 | special right is given to TEAM TYP for educational purpose */
3 | //Don't copy source code without permission
4 |
5 |
6 | #include
7 | #include
8 |
9 | using namespace std;
10 |
11 | void calculateGPA();
12 | void calculateCGPA();
13 | void method();
14 |
15 | int main()
16 | {
17 | system("cls");
18 | int input;
19 | cout<<"--------------------------------------------------------------------------"<>input;
31 | switch(input)
32 | {
33 | case 1:
34 | calculateGPA();
35 | break;
36 |
37 | case 2:
38 | calculateCGPA();
39 | break;
40 | case 3:
41 | method();
42 | break;
43 | case 4:
44 | exit(EXIT_SUCCESS);
45 | break;
46 | default:
47 | cout<<"You have entered wrong input.Try again!\n"<>q;
60 |
61 | float credit [q];
62 | float point [q];
63 |
64 | cout<>credit[i];
69 | cout<>point[i];
72 | cout<<"-----------------------------------\n\n"<>inmenu;
99 |
100 | switch(inmenu)
101 | {
102 | case 1:
103 | calculateGPA();
104 | break;
105 | case 2:
106 | main();
107 | break;
108 | case 3:
109 | exit(EXIT_SUCCESS);
110 |
111 | default:
112 | cout<<"\n\nYou have Entered Wrong Input!Please Choose Again!"<>l;
123 | cout<<"\n\n"<>semrs[i];
131 | cout<<"\n"<>inmenu;
150 |
151 | switch(inmenu)
152 | {
153 | case 1:
154 | calculateCGPA();
155 | break;
156 | case 2:
157 | main();
158 | break;
159 | case 3:
160 | exit(EXIT_SUCCESS);
161 |
162 | default:
163 | cout<<"\n\nYou have Entered Wrong Input!Please Choose Again!"<>inmenu;
183 |
184 | switch(inmenu)
185 | {
186 | case 1:
187 | main();
188 | break;
189 | case 2:
190 | exit(EXIT_SUCCESS);
191 |
192 | default:
193 | cout<<"\n\nYou have Entered Wrong Input!Please Choose Again!"<
34 | INFO
35 |
36 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
--------------------------------------------------------------------------------
/Projects/C++ Projects/Basic/Encryption and Decryption of Text/main.cpp:
--------------------------------------------------------------------------------
1 | // Autor : Nemonet TYP
2 | // Title: Encryption and Decryption project in C++
3 | // PROJECT FOR C/C++ PROGRAMMING TUTORIAL
4 |
5 |
6 | #include
7 | using namespace std;
8 |
9 | int main()
10 | {
11 | int i, x;
12 | char str[100];
13 |
14 | cout << "Please enter a string:\t";
15 | cin >> str;
16 |
17 | cout << "\nPlease choose following options:\n";
18 | cout << "1 = Encrypt the string.\n";
19 | cout << "2 = Decrypt the string.\n";
20 | cin >> x;
21 |
22 | //using switch case statements
23 | switch(x)
24 | {
25 | //first case for encrypting a string
26 | case 1:
27 | for(i = 0; (i < 100 && str[i] != '\0'); i++)
28 | str[i] = str[i] + 2; //the key for encryption is 3 that is added to ASCII value
29 |
30 | cout << "\nEncrypted string: " << str << endl;
31 | break;
32 |
33 | //second case for decrypting a string
34 | case 2:
35 | for(i = 0; (i < 100 && str[i] != '\0'); i++)
36 | str[i] = str[i] - 2; //the key for encryption is 3 that is subtracted to ASCII value
37 |
38 | cout << "\nDecrypted string: " << str << endl;
39 | break;
40 |
41 | default:
42 | cout << "\nInvalid Input !!!\n";
43 | }
44 | return 0;
45 | }
46 |
--------------------------------------------------------------------------------
/Projects/C++ Projects/Basic/Guessing Game/README.md:
--------------------------------------------------------------------------------
1 | # Guessing Game
2 |
--------------------------------------------------------------------------------
/Projects/C++ Projects/Basic/Guessing Game/text.cpp:
--------------------------------------------------------------------------------
1 | //created by The Young Programmer 🏅aka NemoNet 🖥
2 |
3 | #include
4 | using namespace std;
5 | int main()
6 | {
7 | int attemp = 1,ans,guess=0,_won=0,h=100,l=0;
8 | srand(time(0));
9 | ans = rand() % 100;
10 | cout<<"**** PLEASE READ INSTRUCTION ****"<>guess;
20 | if(guess < 0 || guess > 100){
21 | cout<<"INVALID GUESS!!"< "<
2 |
3 | Hotel Booking Management System
4 |
5 |
6 | Hotel Booking Management System in C++
7 |
8 |
9 |
10 | 
11 |
12 |
13 |
14 |
15 |
16 |
17 | Simple Hotel Management System is based on the concept of managing the hotel room’s bookings and payments. In this system, there are no login features. The user can manage room bookings, customer records, view total allotted rooms, edit records, and make payments. This mini project contains limited but essential features.
18 |
19 |
20 |
21 |
22 |
23 | Features of this C++ language based project :
24 |
25 |
26 |
27 |
28 | - Book Rooms
29 | - View Customer Records
30 | - View rooms allotted
31 | - Edit Records
32 | - Delete Records
33 | - Make Payments
34 |
35 |
61 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
--------------------------------------------------------------------------------
/Projects/C++ Projects/Basic/Hotel Management System/Record.dat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codetoanbug/C-CPP-Programming/877d185fd9d32170d42ca11e85480afceeafcdc2/Projects/C++ Projects/Basic/Hotel Management System/Record.dat
--------------------------------------------------------------------------------
/Projects/C++ Projects/Basic/Hotel Management System/main.cpp:
--------------------------------------------------------------------------------
1 | //DEVELOPED BY Nemonet TYP
2 |
3 | //C++ PROJECT
4 |
5 | //START OF THE PROGRAM FOR HOTEL MANAGEMENT
6 |
7 | #include
8 | #include
9 | #include
10 | #include
11 | #include
12 | #include
13 |
14 | using namespace std;
15 |
16 | //START OF CLASS
17 |
18 |
19 |
20 | class hotel
21 | {
22 |
23 | int room_no;
24 | char name[30];
25 | char address[50];
26 | char phone[10];
27 |
28 | public:
29 |
30 | void main_menu(); //to display the main menu
31 | void add(); //to book a room
32 | void display(); //to display the customer record
33 | void rooms(); //to display alloted rooms
34 | void edit(); //to edit the customer record
35 | int check(int); //to check room status
36 | void modify(int); //to modify the record
37 | void delete_rec(int); //to delete the record
38 | void bill(int); //for the bill of a record
39 | };
40 | //END OF CLASS
41 |
42 |
43 |
44 | //FOR DISPLAYING MAIN MENU
45 |
46 |
47 |
48 | void hotel::main_menu()
49 | {
50 |
51 | int choice;
52 | while(choice!=5)
53 | {
54 |
55 | system("cls");
56 | cout<<"\n\t\t\t\t**************************";
57 | cout<<"\n\t\t\t\t SIMPLE HOTEL MANAGEMENT ";
58 | cout<<"\n\t\t\t\t * MAIN MENU *";
59 | cout<<"\n\t\t\t\t**************************";
60 | cout<<"\n\n\n\t\t\t1.Book A Room";
61 | cout<<"\n\t\t\t2.Customer Records";
62 | cout<<"\n\t\t\t3.Rooms Allotted";
63 | cout<<"\n\t\t\t4.Edit Record";
64 | cout<<"\n\t\t\t5.Exit";
65 | cout<<"\n\n\t\t\tEnter Your Choice: ";
66 | cin>>choice;
67 |
68 | switch(choice)
69 | {
70 |
71 | case 1: add();
72 | break;
73 |
74 | case 2: display();
75 | break;
76 |
77 | case 3: rooms();
78 | break;
79 |
80 | case 4: edit();
81 | break;
82 |
83 | case 5: break;
84 |
85 | default:
86 | {
87 |
88 | cout<<"\n\n\t\t\tWrong choice.....!!!";
89 | cout<<"\n\t\t\tPress any key to continue....!!";
90 | getch();
91 |
92 | }
93 |
94 | }
95 |
96 | }
97 |
98 | }
99 |
100 |
101 | //END OF MENU FUNCTION
102 |
103 |
104 | //FUNCTION FOR BOOKING OF ROOM
105 |
106 |
107 | void hotel::add()
108 | {
109 |
110 | system("cls");
111 | int r,flag;
112 | ofstream fout("Record.dat",ios::app);
113 |
114 | cout<<"\n Enter Customer Detalis";
115 | cout<<"\n -----------------------";
116 | cout<<"\n\n Room no: ";
117 | cout<<"\n Total no. of Rooms - 50";
118 | cout<<"\n Ordinary Rooms from 1 - 30";
119 | cout<<"\n Luxury Rooms from 31 - 45";
120 | cout<<"\n Royal Rooms from 46 - 50";
121 | cout <<"\n Enter The Room no. you want to stay in :- "<<'\n';
122 | cin>>r;
123 |
124 | flag=check(r);
125 |
126 | if(flag)
127 | cout<<"\n Sorry..!!!Room is already booked";
128 |
129 | else
130 | {
131 |
132 | room_no=r;
133 | cout<<" Name: ";
134 | cin>>name;
135 | cout<<" Address: ";
136 | cin>>address;
137 | cout<<" Phone No: ";
138 | cin>>phone;
139 |
140 | fout.write((char*)this,sizeof(hotel));
141 | cout<<"\n Room is booked...!!!";
142 |
143 | }
144 |
145 | cout<<"\n Press any key to continue.....!!";
146 |
147 | getch();
148 | fout.close();
149 |
150 | }
151 |
152 |
153 | //END OF BOOKING FUNCTION
154 |
155 |
156 | //FUNCTION FOR DISPLAYING A PURTICULAR CUSTOMER`S RECORD
157 |
158 |
159 |
160 |
161 |
162 | void hotel::display()
163 | {
164 |
165 | system("cls");
166 |
167 | ifstream fin("Record.dat",ios::in);
168 | int r,flag;
169 |
170 | cout<<"\n Enter room No. for a particular customer`s details :- "<<'\n';
171 | cin>>r;
172 |
173 | while(!fin.eof())
174 | {
175 |
176 | fin.read((char*)this,sizeof(hotel));
177 | if(room_no==r)
178 | {
179 |
180 | system("cls");
181 | cout<<"\n Customer Details";
182 | cout<<"\n -----------------";
183 | cout<<"\n\n Room no: "<>choice;
251 | system("cls");
252 |
253 | cout<<"\n Enter room no: " ;
254 | cin>>r;
255 |
256 | switch(choice)
257 | {
258 |
259 | case 1: modify(r);
260 | break;
261 |
262 | case 2: delete_rec(r);
263 | break;
264 |
265 | case 3: bill(r);
266 | break;
267 |
268 | default: cout<<"\n Wrong Choice.....!!";
269 |
270 | }
271 | cout<<"\n Press any key to continue....!!!";
272 |
273 | getch();
274 | }
275 |
276 |
277 | int hotel::check(int r)
278 | {
279 |
280 | int flag=0;
281 |
282 | ifstream fin("Record.dat",ios::in);
283 |
284 | while(!fin.eof())
285 | {
286 |
287 | fin.read((char*)this,sizeof(hotel));
288 | if(room_no==r)
289 | {
290 |
291 | flag=1;
292 | break;
293 |
294 | }
295 |
296 | }
297 |
298 | fin.close();
299 | return(flag);
300 |
301 | }
302 |
303 |
304 | //FUNCTION TO MODIFY CUSTOMERS RECORD
305 |
306 |
307 | void hotel::modify(int r)
308 | {
309 |
310 | long pos,flag=0;
311 |
312 | fstream file("Record.dat",ios::in|ios::out|ios::binary);
313 |
314 | while(!file.eof())
315 | {
316 |
317 | pos=file.tellg();
318 | file.read((char*)this,sizeof(hotel));
319 |
320 | if(room_no==r)
321 | {
322 |
323 | cout<<"\n Enter New Details";
324 | cout<<"\n ------------------";
325 | cout<<"\n Name: ";
326 | cin>>name;
327 | cout<<" Address: ";
328 | cin>>address;
329 | cout<<" Phone no: ";
330 | cin>>phone;
331 | file.seekg(pos);
332 | file.write((char*)this,sizeof(hotel));
333 | cout<<"\n Record is modified....!!";
334 | flag=1;
335 | break;
336 |
337 | }
338 |
339 | }
340 |
341 | if(flag==0)
342 | cout<<"\n Sorry Room No. not found or vacant...!!";
343 | file.close();
344 |
345 | }
346 |
347 |
348 | //END OF MODIFY FUNCTION
349 |
350 |
351 | //FUNCTION FOR DELETING RECORD
352 |
353 |
354 | void hotel::delete_rec(int r)
355 | {
356 |
357 | int flag=0;
358 | char ch;
359 | ifstream fin("Record.dat",ios::in);
360 | ofstream fout("temp.dat",ios::out);
361 |
362 | while(!fin.eof())
363 | {
364 |
365 | fin.read((char*)this,sizeof(hotel));
366 | if(room_no==r)
367 |
368 | {
369 |
370 | cout<<"\n Name: "<>ch;
375 |
376 | if(ch=='n')
377 | fout.write((char*)this,sizeof(hotel));
378 | flag=1;
379 |
380 | }
381 |
382 | else
383 | fout.write((char*)this,sizeof(hotel));
384 |
385 | }
386 |
387 | fin.close();
388 | fout.close();
389 |
390 | if(flag==0)
391 | cout<<"\n Sorry room No. not found or vacant...!!";
392 |
393 | else
394 | {
395 |
396 | remove("Record.dat");
397 | rename("temp.dat","Record.dat");
398 |
399 | }
400 |
401 | }
402 |
403 |
404 | //END OF DELETE FUNCTION
405 |
406 |
407 | //FUNCTION FOR CUSTOMER`S BILL
408 |
409 | void hotel::bill(int r)
410 | {
411 |
412 | hotel h1;
413 | ifstream f1;
414 | f1.open("record.dat",ios::in|ios::binary);
415 |
416 | if(!f1)
417 | cout<<"cannot open";
418 |
419 | else
420 | {
421 |
422 | f1.read((char*)&h1,sizeof (hotel));
423 | while(f1)
424 |
425 | {
426 |
427 | f1.read((char*)&h1,sizeof(hotel));
428 |
429 | }
430 |
431 | if (h1.room_no == r)
432 | {
433 |
434 | if(h1.room_no>=1&&h1.room_no<=30)
435 | cout<<"your bill = 2000";
436 |
437 | else if (h1.room_no>=35&&h1.room_no<=45)
438 | cout<<"your bill = 5000" ;
439 |
440 | else
441 | cout<<"your bill = 7000";
442 |
443 | }
444 |
445 | else
446 | { cout<<"room no. not found";}
447 |
448 | }
449 |
450 | f1.close();
451 | getch();
452 |
453 | }
454 |
455 | //END OF BILLING FUNCTION
456 |
457 | //START OF MAIN PROGARM
458 |
459 |
460 | int main()
461 | {
462 |
463 | hotel h;
464 |
465 | system("cls");
466 |
467 | cout<<"\n\t\t\t*****************************";
468 | cout<<"\n\t\t\t* HOTEL MANAGEMENT PROJECT *";
469 | cout<<"\n\t\t\t*****************************";
470 | cout<<"\n\n\t\tDeveloped By:";
471 | cout<<"\t\t Nemonet";
472 | cout<<"\n\t\t\t\t The Young Programmer (TYP)";
473 | cout<<"\n\n\n\n\n\n\n\t\t\t\t\tPress any key to continue....!!";
474 |
475 | getch();
476 |
477 | h.main_menu();
478 | return 0;
479 | }
480 |
481 | //END OF MAIN PROGRAM
482 |
--------------------------------------------------------------------------------
/Projects/C++ Projects/Basic/ReadMe.md:
--------------------------------------------------------------------------------
1 |
2 | # Basic C++ Programming Projects
3 |
4 | This repository contains a collection of basic C++ programming projects aimed at beginners.
5 |
6 | Each project focuses on different aspects of C++ programming and is designed to help you improve your skills and understanding of the language.
7 |
8 |
9 |
28 |
29 | Feel free to explore these projects, modify them, and enhance them as you progress in your C++ programming journey.
30 |
31 | Each project includes its own set of instructions and code files to help you get started.
32 |
33 | Happy coding!
34 |
35 | ## Getting Started
36 |
37 | To get started with any of the projects, follow the instructions provided in the project readme
38 |
39 | Each project has its own folder containing the source code files, instructions, and any additional resources required.
40 |
41 | ## Contribution
42 |
43 | Contributions to this repository are welcome. If you have any improvements or new project ideas to add, feel free to submit a pull request.
44 |
45 | Please make sure to follow the contribution guidelines outlined in the repository.
46 |
47 | ## License
48 |
49 | This repository is licensed under the [MIT License](LICENSE). You are free to use, modify, and distribute the code as per the terms of the license.
50 |
51 | ## Acknowledgments
52 |
53 | The projects in this repository are inspired by various programming resources, online tutorials, and personal experiences.
54 |
55 | We acknowledge the efforts of the C++ programming community and the valuable learning resources they provide.
56 |
57 |
58 | ## NOTE
59 |
60 | If you have any questions or need assistance with any of the projects, feel free to reach out via the issue tracker. Enjoy learning and coding in C++!
61 |
--------------------------------------------------------------------------------
/Projects/C++ Projects/Basic/Supermarket Billing System/README.md:
--------------------------------------------------------------------------------
1 | # Supermarket Billing System in C++
2 |
3 | This supermarket billing system is a simple console application built in C++ without the use of graphics. This project will help you understand basically two things – use of stream class and file handling in c++ programming language.
4 |
5 | ### Listed below are the key features of this project:
6 |
7 | - **Bill Report:** It shows the bill report of all the items added in supermarket billing system.
8 | - **Add, Remove or Edit items:** With this feature you can add, remove and modify item details. In add items, you can add information or details such as item no., item name, manufacturing date, price, quantity, tax percent, and many more.
9 | - **Show item details:** This feature allows users to see the items and the corresponding details given for the item while adding the item.
10 |
11 |
12 | ### Output Screens:
13 |
14 | - Main menu
15 |
16 | 
17 |
18 | - Add items
19 |
20 | 
21 |
22 |
23 |
24 |
25 |
26 | INFO
27 |
28 |
44 |
45 |
46 |
47 |
48 |
--------------------------------------------------------------------------------
/Projects/C++ Projects/Basic/Supermarket Billing System/main.cpp:
--------------------------------------------------------------------------------
1 | // Autor : Nemonet TYP
2 | // Title: Supermarket Billing System project in C++
3 | // PROJECT FOR C/C++ PROGRAMMING TUTORIAL
4 |
5 |
6 |
7 | #include
8 | #include
9 | #include
10 | #include
11 | #include
12 | #include
13 | #include
14 | #include
15 | using namespace std;
16 | //global variable declaration
17 | int k=7,r=0,flag=0;
18 | COORD coord = {0, 0};
19 |
20 | void gotoxy(int x, int y)
21 | {
22 | COORD coord;
23 | coord.X = x;
24 | coord.Y = y;
25 | SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), coord);
26 | }
27 | struct date
28 | {
29 | int mm,dd,yy;
30 | };
31 |
32 | ofstream fout;
33 | ifstream fin;
34 |
35 | class item
36 | {
37 | int itemno;
38 | char name[25];
39 | date d;
40 | public:
41 | void add()
42 | {
43 | cout<<"\n\n\tItem No: ";
44 | cin>>itemno;
45 | cout<<"\n\n\tName of the item: ";
46 | cin>>name;
47 | //gets(name);
48 | cout<<"\n\n\tManufacturing Date(dd-mm-yy): ";
49 | cin>>d.mm>>d.dd>>d.yy;
50 | }
51 | void show()
52 | {
53 | cout<<"\n\tItem No: ";
54 | cout<>price;
95 | cout<<"\n\n\tQuantity: ";
96 | cin>>qty;
97 | cout<<"\n\n\tTax percent: ";
98 | cin>>tax;
99 | cout<<"\n\n\tDiscount percent: ";
100 | cin>>dis;
101 | calculate();
102 | fout.write((char *)&amt,sizeof(amt));
103 | fout.close();
104 | }
105 | void amount::calculate()
106 | {
107 | gross=price+(price*(tax/100));
108 | netamt=qty*(gross-(gross*(dis/100)));
109 | }
110 | void amount::show()
111 | {
112 | fin.open("itemstore.dat",ios::binary);
113 | fin.read((char*)&amt,sizeof(amt));
114 | item::show();
115 | cout<<"\n\n\tNet amount: ";
116 | cout<>ch;
194 | switch(ch)
195 | {
196 | case 1:
197 | ss:
198 | system("cls");
199 | gotoxy(25,2);
200 | cout<<"Bill Details";
201 | gotoxy(25,3);
202 | cout<<"================\n\n";
203 | cout<<"\n\t\t1.All Items\n\n";
204 | cout<<"\t\t2.Back to Main menu\n\n";
205 | cout<<"\t\tPlease Enter Required Option: ";
206 | int cho;
207 | cin>>cho;
208 | if(cho==1)
209 | {
210 | system("cls");
211 | gotoxy(30,3);
212 | cout<<" BILL DETAILS ";
213 | gotoxy(3,5);
214 | cout<<"ITEM NO";
215 | gotoxy(13,5);
216 | cout<<"NAME";
217 | gotoxy(23,5);
218 | cout<<"PRICE";
219 | gotoxy(33,5);
220 | cout<<"QUANTITY";
221 | gotoxy(44,5);
222 | cout<<"TAX %";
223 | gotoxy(52,5);
224 | cout<<"DISCOUNT %";
225 | gotoxy(64,5);
226 | cout<<"NET AMOUNT";
227 | fin.open("itemstore.dat",ios::binary);
228 | if(!fin)
229 | {
230 | cout<<"\n\nFile Not Found...";
231 | goto menu;
232 | }
233 | fin.seekg(0);
234 | gtotal=0;
235 | while(!fin.eof())
236 | {
237 | fin.read((char*)&amt,sizeof(amt));
238 | if(!fin.eof())
239 | {
240 | amt.report();
241 | gtotal+=amt.retnetamt();
242 | ff=0;
243 | }
244 | if(ff!=0) gtotal=0;
245 | }
246 | gotoxy(17,k);
247 | cout<<"\n\n\n\t\t\tGrand Total="<>apc;
269 | switch(apc)
270 | {
271 | case 1:
272 | fout.open("itemstore.dat",ios::binary|ios::app);
273 | amt.add();
274 | cout<<"\n\t\tItem Added Successfully!";
275 | getch();
276 | goto db;
277 |
278 | case 2:
279 | int ino;
280 | flag=0;
281 | cout<<"\n\n\tEnter Item Number to be Edited :";
282 | cin>>ino;
283 | fin.open("itemstore.dat",ios::binary);
284 | fout.open("itemstore.dat",ios::binary|ios::app);
285 | if(!fin)
286 | {
287 | cout<<"\n\nFile Not Found...";
288 | goto menu;
289 | }
290 | fin.seekg(0);
291 | r=0;
292 | while(!fin.eof())
293 | {
294 | fin.read((char*)&amt,sizeof(amt));
295 | if(!fin.eof())
296 | {
297 | int x=amt.item::retno();
298 | if(x==ino)
299 | {
300 | flag=1;
301 | fout.seekp(r*sizeof(amt));
302 | system("cls");
303 | cout<<"\n\t\tCurrent Details are\n";
304 | amt.show();
305 | cout<<"\n\n\t\tEnter New Details\n";
306 | amt.add();
307 | cout<<"\n\t\tItem Details editted";
308 | }
309 | }
310 | r++;
311 | }
312 | if(flag==0)
313 | {
314 | cout<<"\n\t\tItem No does not exist...Please Retry!";
315 | getch();
316 | goto db;
317 | }
318 | fin.close();
319 | getch();
320 | goto db;
321 |
322 | case 3:
323 | flag=0;
324 | cout<<"\n\n\tEnter Item Number to be deleted :";
325 | cin>>ino;
326 | fin.open("itemstore.dat",ios::binary);
327 | if(!fin)
328 | {
329 | cout<<"\n\nFile Not Found...";
330 | goto menu;
331 | }
332 | //fstream tmp("temp.dat",ios::binary|ios::out);
333 | fin.seekg(0);
334 | while(fin.read((char*)&amt, sizeof(amt)))
335 | {
336 | int x=amt.item::retno();
337 | if(x!=ino)
338 | tmp.write((char*)&amt,sizeof(amt));
339 | else
340 | {
341 | flag=1;
342 | }
343 | }
344 | fin.close();
345 | tmp.close();
346 | fout.open("itemstore.dat",ios::trunc|ios::binary);
347 | fout.seekp(0);
348 | tmp.open("temp.dat",ios::binary|ios::in);
349 | if(!tmp)
350 | {
351 | cout<<"Error in File";
352 | goto db;
353 | }
354 | while(tmp.read((char*)&amt,sizeof(amt)))
355 | fout.write((char*)&amt,sizeof(amt));
356 | tmp.close();
357 | fout.close();
358 | if(flag==1)
359 | cout<<"\n\t\tItem Succesfully Deleted";
360 | else if (flag==0)
361 | cout<<"\n\t\tItem does not Exist! Please Retry";
362 | getch();
363 | goto db;
364 | case 4:
365 | goto menu;
366 | default:
367 | cout<<"\n\n\t\tWrong Choice!!! Retry";
368 | getch();
369 | goto db;
370 | }
371 | case 3:
372 | system("cls");
373 | flag=0;
374 | int ino;
375 | cout<<"\n\n\t\tEnter Item Number :";
376 | cin>>ino;
377 | fin.open("itemstore.dat",ios::binary);
378 | if(!fin)
379 | {
380 | cout<<"\n\nFile Not Found...\nProgram Terminated!";
381 | goto menu;
382 | }
383 | fin.seekg(0);
384 | while(fin.read((char*)&amt,sizeof(amt)))
385 | {
386 | int x=amt.item::retno();
387 | if(x==ino)
388 | {
389 | amt.pay();
390 | flag=1;
391 | break;
392 | }
393 | }
394 | if(flag==0)
395 | cout<<"\n\t\tItem does not exist....Please Retry!";
396 | getch();
397 | fin.close();
398 | goto menu;
399 | case 4:
400 | system("cls");
401 | gotoxy(20,20);
402 | cout<<"ARE YOU SURE, YOU WANT TO EXIT (Y/N)?";
403 | char yn;
404 | cin>>yn;
405 | if((yn=='Y')||(yn=='y'))
406 | {
407 | gotoxy(12,20);
408 | system("cls");
409 | cout<<"************************** THANKS **************************************";
410 | getch();
411 | exit(0);
412 | }
413 | else if((yn=='N')||(yn=='n'))
414 | goto menu;
415 | else
416 | {
417 | goto menu;
418 | }
419 | default:
420 | cout<<"\n\n\t\tWrong Choice....Please Retry!";
421 | getch();
422 | goto menu;
423 | }
424 | return 0;
425 | }
426 |
--------------------------------------------------------------------------------
/Projects/C++ Projects/Basic/Temperature-calculator/README.md:
--------------------------------------------------------------------------------
1 | # Temperature Calculator
2 |
3 |
--------------------------------------------------------------------------------
/Projects/C++ Projects/Basic/Temperature-calculator/temperature-calculator.cpp:
--------------------------------------------------------------------------------
1 | /*
2 | project status : 1
3 | Date : Oct 11, 2022
4 | Author : Easter Maxwell
5 | co-factor : The Young Programmer Nemonet (Nov 16, 2022)
6 | */
7 |
8 | /*'Error --1' is just a random error message*/
9 |
10 | //control number output
11 | #include
12 |
13 | //for system operations
14 | #include
15 |
16 | #include
17 |
18 | using namespace std;
19 |
20 | void standard_output()
21 | {
22 | int fahr;
23 | int order;
24 | int celsius;
25 | int lower_value;
26 | int upper_value;
27 |
28 | cout << '\n';
29 | cout << "[+]Enter Order value : ";
30 | cin >> order;
31 |
32 | cout << '\n';
33 | cout << "[+]Enter Lower Value : ";
34 | cin >> lower_value;
35 |
36 | cout << '\n';
37 | cout << "[+]Enter Upper Value : ";
38 | cin >> upper_value;
39 |
40 | /*enables 'fahr' to start printing from the lowest value*/
41 | fahr = lower_value;
42 |
43 | cout << '\n';
44 | cout << "\t\t\t\t\t ";
45 | cout << "--- Temperature ---" << '\n';
46 |
47 | cout << '\n';
48 | cout << "\t\t\t\t\t "
49 | << "+----------------------------+"
50 | << '\n'
51 | << "\t\t\t\t\t "
52 | << "| Fahrenheit Celsius |"
53 | << '\n'
54 | << "\t\t\t\t\t "
55 | << "+--------------|-------------+";
56 |
57 | while (fahr <= upper_value)
58 | {
59 | /*Formula (Fahrenheit to Celsius)*/
60 | celsius = 5 * (fahr - 32) / 9;
61 |
62 | cout << '\n';
63 | cout << "\t\t\t\t\t ";
64 |
65 | cout << "| " << fahr << "\t\t " << celsius << " |";
66 |
67 | cout << '\n';
68 | cout << "\t\t\t\t\t ";
69 | cout << "+--------------|-------------+";
70 |
71 | /*increments fahrenheit by the 'order' value*/
72 | fahr = fahr + order;
73 | }
74 |
75 | }
76 |
77 | void user_specific_output()
78 | {
79 | string option;
80 | float fahr_input;
81 | float fahr_value;
82 | float celsius_input;
83 | float celsius_value;
84 |
85 | cout << "\t\t\t\t\t "
86 | << "--- Available Options ---" << '\n';
87 |
88 | cout << "\t\t\t "
89 | << '\n'
90 | << "\t\t\t "
91 | << "+-----------------------------------------------------------+"
92 | << "\t\t\t "
93 | << '\n'
94 | << "\t\t\t "
95 | << "| Press F to convert temperature from Fahrenheit to celsius |"
96 | << "\t\t\t "
97 | << '\n'
98 | << "\t\t\t "
99 | << "| --------------------------------------------------------- |"
100 | << "\t\t\t "
101 | << '\n'
102 | << "\t\t\t "
103 | << "| Press C to convert temperature from Celsius to Fahrenheit |"
104 | << "\t\t\t "
105 | << '\n'
106 | << "\t\t\t "
107 | << "+-----------------------------------------------------------+";
108 |
109 | cout << "\n\n";
110 | cout << "[:]Enter Option : ";
111 | cin >> option;
112 |
113 | if (option == "C" || option == "c")
114 | {
115 | cout << '\n';
116 | cout << "[+]Enter Temperature in Celsius : ";
117 | cin >> celsius_input;
118 |
119 | /*Formula (Celsius to Fahrenheit)*/
120 | fahr_value = (9.0 / 5.0) * celsius_input + 32;
121 |
122 | cout << '\n';
123 | cout << "\t\t\t\t\t ";
124 | cout << "--- Result ---" << '\n';
125 |
126 | cout << '\n';
127 | cout << "\t\t\t\t\t "
128 | << "+----------------------------+"
129 | << '\n'
130 | << "\t\t\t\t\t "
131 | << "| Celsius Fahrenheit |"
132 | << '\n'
133 | << "\t\t\t\t\t "
134 | << "+--------------|-------------+";
135 |
136 | cout << '\n';
137 | cout << "\t\t\t\t\t ";
138 | cout << "| " << celsius_input << "\t | " << setprecision(3) << fahr_value << "\t |";
139 |
140 | cout << '\n';
141 | cout << "\t\t\t\t\t ";
142 | cout << "+----------------------------+";
143 |
144 | }
145 |
146 | else if (option == "F" || option == "f")
147 | {
148 | cout << '\n';
149 | cout << "[+]Enter Temperature in Fahrenheit : ";
150 | cin >> fahr_input;
151 |
152 | /*Formula (Fahrenheit to Celsius)*/
153 | celsius_value = 5 * (fahr_input - 32) / 9;
154 |
155 | cout << '\n';
156 | cout << "\t\t\t\t\t ";
157 | cout << "--- Result ---" << '\n';
158 |
159 | cout << '\n';
160 | cout << "\t\t\t\t\t "
161 | << "+----------------------------+"
162 | << '\n'
163 | << "\t\t\t\t\t "
164 | << "| Fahrenheit Celsius |"
165 | << '\n'
166 | << "\t\t\t\t\t "
167 | << "+--------------|-------------+";
168 |
169 | cout << '\n';
170 | cout << "\t\t\t\t\t ";
171 | cout << "| " << fahr_input << "\t | " << setprecision(3) << celsius_value << "\t |";
172 |
173 | cout << '\n';
174 | cout << "\t\t\t\t\t ";
175 | cout << "+----------------------------+";
176 | }
177 |
178 | else
179 | {
180 | Sleep(500);
181 | cout << "\n[:]#Msg : Error --1" << '\n';
182 | cout << "[:}Fault : Invalid option Input!" << '\n';
183 | }
184 |
185 | }
186 |
187 | int main()
188 | {
189 | string user_input;
190 |
191 | cout << "\t\t\t\t\t ";
192 | cout << "--- TEMPERATURE CALCULATOR ---";
193 | cout << "\n\n";
194 | cout<<"\n\t\tDeveloped By:";
195 | cout<<" Easter Maxwell (Oct 11, 2022)";
196 | cout<<"\n\t\t In Collaboration with:";
197 | cout<<" Nemonet (TYP) (Nov 16, 2022)";
198 | cout<<"\n\n\n\n";
199 |
200 | cout << "\t\t\t\t\t"
201 | << "+------------------------------------+"
202 | << "\t\t\t\t\t"
203 | << '\n'
204 | << "\t\t\t\t\t"
205 | << "| Press 0 to display standard input |"
206 | << "\t\t\t\t\t"
207 | << '\n'
208 | << "\t\t\t\t\t"
209 | << "| ---------------------------------- |"
210 | << "\t\t\t\t\t"
211 | << '\n'
212 | << "\t\t\t\t\t"
213 | << "| Press X to display specific output |"
214 | << "\t\t\t\t\t"
215 | << '\n'
216 | << "\t\t\t\t\t"
217 | << "+------------------------------------+"
218 | << "\n\n";
219 |
220 | cout << "[:]Enter option : ";
221 | cin >> user_input;
222 |
223 | if (user_input == "0" || user_input == "o" || user_input == "O")
224 | {
225 | Sleep(500);
226 |
227 | /*display this function*/
228 | standard_output();
229 | }
230 |
231 | else if (user_input == "X" || user_input == "x" || user_input == "*")
232 | {
233 | Sleep(500);
234 |
235 | /*display this function*/
236 | user_specific_output();
237 | }
238 |
239 | else
240 | {
241 | Sleep(500);
242 | cout << "\n[:]#Msg : Error --1" << '\n';
243 | cout << "[:}Fault : Invalid option Input!" << '\n';
244 | }
245 |
246 | return 0;
247 |
248 | }
249 |
250 |
--------------------------------------------------------------------------------
/Projects/C++ Projects/Basic/Temperature-calculator/temperature-calculator.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codetoanbug/C-CPP-Programming/877d185fd9d32170d42ca11e85480afceeafcdc2/Projects/C++ Projects/Basic/Temperature-calculator/temperature-calculator.exe
--------------------------------------------------------------------------------
/Projects/C++ Projects/Basic/Temperature-calculator/temperature-calculator.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codetoanbug/C-CPP-Programming/877d185fd9d32170d42ca11e85480afceeafcdc2/Projects/C++ Projects/Basic/Temperature-calculator/temperature-calculator.o
--------------------------------------------------------------------------------
/Projects/README.md:
--------------------------------------------------------------------------------
1 | # How to Run the Projects
2 |
3 | **NOTE: We will be using Visual Studio Code.** Click here to download Visual Studio Code.
4 |
5 |
6 | ## C/C++ for Visual Studio Code
7 |
8 | C/C++ support for Visual Studio Code is provided by a **Microsoft C/C++ extension** to enable cross-platform C and C++ development on **Windows**, **Linux**, and **macOS**.
9 |
10 |
11 | 
12 |
13 |
14 |
15 | ### Install the extension
16 |
17 | - Open VS Code.
18 | - Select the Extensions view icon on the Activity bar or use the keyboard shortcut (`Ctrl+Shift+X`).
19 | - Search for `C++`.
20 | - Select Install.
21 | - After you install the extension, also search for **Code Runner extension** and install it.
22 |
23 |
24 | 
25 |
26 |
27 |
28 |
29 | ### Install a compiler
30 |
31 | C++ is a compiled language meaning your program's source code must be translated (compiled) before it can be run on your computer.
32 |
33 | The C/C++ extension does not include a C++ compiler or debugger. You will need to install these tools or use those already installed on your computer.
34 |
35 | Most Linux distributions have the `GNU Compiler Collection (GCC)` installed and macOS users can get the `Clang` tools with `Xcode`.
36 |
37 | #### Check if you have a compiler installed
38 |
39 | - Checking for the GCC compiler `g++`:
40 |
41 | `g++ --version`
42 |
43 | - Checking for the Clang compiler `clang`:
44 |
45 | `clang --version`
46 |
47 |
48 | **If you don't have a compiler installed**, we will describe how to install the Minimalist GNU for Windows (MinGW) C++ tools (compiler and debugger). MinGW is a popular, free toolset for Windows.
49 |
50 | If you are running VS Code on another platform, you can read the vlang/LLVM Compiler and Debugger (For-macOS) , which cover C++ configurations for **Linux** and **macOS**.
51 |
52 |
53 | ### Install MinGW-x64 (For Windows)
54 |
55 | - Follow the Installation instructions on the MSYS2 website to install `Mingw-w64`.
56 | - Make sure to run each required Start menu and `pacman` command.
57 | - Add the MinGW compiler to your path: follow the video below to do that
58 |
59 |
60 |
61 | ### Video Explanation on how to Run the whole process
62 |
63 | https://www.youtube.com/watch?v=7jil6-QRsH0
64 |
65 |
66 |
67 |
68 | #### Check your MinGW installation
69 |
70 | To check that your **Mingw-w64** tools are correctly installed and available, open a new Command Prompt and type:
71 |
72 | `gcc --version`
73 |
74 | `g++ --version`
75 |
76 | `gdb --version`
77 |
78 | If you don't see the expected output or g++ or gdb is not a recognized command, make sure your PATH entry matches the Mingw-w64 binary location where the compiler tools are located.
79 |
80 | **NOTE**
81 |
82 | Follow the video to know How to Install MinGW (MSYS2) and Run C, C++ program in VS Code for Windows
83 |
84 |
85 |
86 | ### PART FOR macOS
87 |
88 |
89 |
90 | ## Install Clang/LLVM compiler and debugger (For macOS)
91 |
92 |
93 |
94 | In this tutorial, you will learn to configure Visual Studio Code on macOS to use the Clang/LLVM compiler and debugger.
95 |
96 | ### Prerequisites
97 |
98 | To successfully complete this tutorial, you must do the following:
99 |
100 | - Install Visual Studio Code on macOS.
101 |
102 | - Install the C++ extension for VS Code. You can install the C/C++ extension by searching for `c++` in the Extensions view (`Ctrl+Shift+X`).
103 |
104 | 
105 |
106 | ### Ensure Clang is installed
107 |
108 | - **Clang** may already be installed on your Mac. To verify that it is, open a macOS Terminal window and enter the following command:
109 |
110 | `clang --version`
111 |
112 | - If Clang isn't installed, enter the following command to install the command line developer tools:
113 |
114 | `xcode-select --install`
115 |
116 | ### Video Explanation on how to Run the whole process
117 |
118 | https://www.youtube.com/watch?v=f0vVV4NPmjQ
119 |
120 |
121 |
122 |
123 |
124 |
125 | ## How to Contribute: [🔝](#contents)
126 |
127 | - Just fork the project and clone it into your machine
128 | - Then make your contribution and upload it to your fork repository
129 | - Then click on pull request
130 |
131 |
132 |
133 | ### Donates to Support
134 |
135 |
136 |
137 | **NOTE**
138 |
139 | If you face any issues kindly let us know
140 |
--------------------------------------------------------------------------------
/Tutorials/C Basic Tutorials/README.md:
--------------------------------------------------------------------------------
1 | # C Basic Tutorial
2 |
3 | **Note:** This Tutorial is mainly Practical.
4 |
5 |
6 |
7 | Download our mobile App for full Tutorial:
8 |
9 | * App Website: Here
10 | * Play store: Here
11 | * App Store: Here
12 |
13 |
14 |
15 |
16 |
17 | **NoteNote:**
18 | - Give a STAR if you like this
19 | - FORK to get more update
20 | - Make a PULL REQUEST to countribute
21 |
22 |
--------------------------------------------------------------------------------
/Tutorials/C++ Basic Tutorials/Simple Programs/ARRAY/Double Dimension Array/Array Program List.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codetoanbug/C-CPP-Programming/877d185fd9d32170d42ca11e85480afceeafcdc2/Tutorials/C++ Basic Tutorials/Simple Programs/ARRAY/Double Dimension Array/Array Program List.md
--------------------------------------------------------------------------------
/Tutorials/C++ Basic Tutorials/Simple Programs/ARRAY/Single Dimension Array/Array Program List.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codetoanbug/C-CPP-Programming/877d185fd9d32170d42ca11e85480afceeafcdc2/Tutorials/C++ Basic Tutorials/Simple Programs/ARRAY/Single Dimension Array/Array Program List.md
--------------------------------------------------------------------------------
/Tutorials/C++ Basic Tutorials/Simple Programs/BASIC/Basic Program List.md:
--------------------------------------------------------------------------------
1 | # Basic C++ Program List
2 |
3 | **Note:**
4 | - Give a STAR if you like this
5 | - FORK to get more update
6 | - Make a PULL REQUEST to countribute
7 |
8 |
9 |
10 | *Put your phone in desktop mode for easy access*
11 |
12 |
13 |
14 |
15 |
16 |
17 | ADDITION OF TWO NUMBER
18 |
19 | ```
20 |
21 | #include
22 | using namespace std;
23 | int main()
24 | {
25 | int a,b,c;
26 | cout<<"Enter first number\n";
27 | cin>>a;
28 | cout<<"Enter second number\n";
29 | cin>>b;
30 | c=a+b;
31 | cout<<"Add="<
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 | SUBTRACTION OF TWO NUMBER
46 |
47 | ```
48 |
49 | #include
50 | using namespace std;
51 | int main()
52 | {
53 | int a,b,c;
54 | cout<<"Enter first number\n";
55 | cin>>a;
56 | cout<<"Enter second number\n";
57 | cin>>b;
58 | c=a-b;
59 | cout<<"Sub="<
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 | MULTIPLICATION OF TWO NUMBER
74 |
75 | ```
76 |
77 | #include
78 | using namespace std;
79 | int main()
80 | {
81 | int a,b,c;
82 | cout<<"Enter first number\n";
83 | cin>>a;
84 | cout<<"Enter second number\n";
85 | cin>>b;
86 | c=a*b;
87 | cout<<"Multiply="<
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 | DIVISION OF TWO NUMBER
101 |
102 | ```
103 |
104 | #include
105 | using namespace std;
106 | int main()
107 | {
108 | int a,b,c;
109 | cout<<"Enter first number\n";
110 | cin>>a;
111 | cout<<"Enter second number\n";
112 | cin>>b;
113 | c=a/b;
114 | cout<<"Div="<
120 |
121 |
122 |
123 |
124 |
125 |
126 |
127 |
128 |
129 | AREA OF RECTANGLE
130 |
131 | ```
132 |
133 | #include
134 | using namespace std;
135 | int main()
136 | {
137 | int area,h,w;
138 | cout<<"Enter height of rectangle\n";
139 | cin>>h;
140 | cout<<"Enter width of rectangle\n";
141 | cin>>w;
142 | area=h*w;
143 | cout<<"Area of rectangle="<
149 |
150 |
151 |
152 |
153 |
154 |
155 |
156 |
157 | AREA OF SQUARE
158 |
159 | ```
160 |
161 | #include
162 | using namespace std;
163 | int main()
164 | {
165 | int area,side;
166 | cout<<"Enter side of square\n";
167 | cin>>side;
168 | area=side*side;
169 | cout<<"Area of square="<
175 |
176 |
177 |
178 |
179 |
180 |
181 |
182 |
183 |
184 | AREA OF CIRCLE
185 |
186 | ```
187 |
188 | #include
189 | using namespace std;
190 | int main()
191 | {
192 | float area,r;
193 | cout<<"Enter radius of circle\n";
194 | cin>>r;
195 | area=3.14*r*r;
196 | cout<<"Area of circle="<
202 |
203 |
204 |
205 |
206 |
207 |
208 |
209 |
210 |
211 |
212 | AREA OF TRIANGLE
213 |
214 | ```
215 |
216 | #include
217 | using namespace std;
218 | int main()
219 | {
220 | float area,b,h;
221 | cout<<"Enter base\n";
222 | cin>>b;
223 | cout<<"Enter height\n";
224 | cin>>h;
225 | area=0.5*b*h;
226 | cout<<"Area of triangle="<
232 |
233 |
234 |
235 |
236 |
237 |
238 |
239 |
240 |
241 | INPUT MARKS OF 5SUBJECT AND FIND THERE AVERAGE
242 |
243 | **Note** Let each subject be Physics=p, Chemistry=c, Math=m, Geography=g, English=e
244 |
245 | ```
246 |
247 | #include
248 | using namespace std;
249 | int main()
250 | {
251 | float p,c,m,g,e,avg;
252 | cout<<"Enter marks in physics\n";
253 | cin>>p;
254 | cout<<"Enter marks in chemistry\n";
255 | cin>>c;
256 | cout<<"Enter marks in math\n";
257 | cin>>m;
258 | cout<<"Enter marks in geography\n";
259 | cin>>g;
260 | cout<<"Enter marks in english\n";
261 | cin>>e;
262 | avg=(p+c+m+g+e)/5;
263 | cout<<"Average of result="<
269 |
270 |
271 |
272 |
273 |
274 |
275 |
276 |
277 | SIMPLE INTEREST PROGRAM
278 |
279 | ```
280 |
281 | #include
282 | using namespace std;
283 | int main()
284 | {
285 | float p,r,t,si;
286 | cout<<"Enter principle\n";
287 | cin>>p;
288 | cout<<"Enter rate of interest\n";
289 | cin>>r;
290 | cout<<"Enter time\n";
291 | cin>>t;
292 | si=(p*r*t)/100;
293 | cout<<"Simple Interest="<
299 |
300 |
301 |
302 |
303 |
304 |
305 |
306 |
307 |
308 |
309 |
--------------------------------------------------------------------------------
/Tutorials/C++ Basic Tutorials/Simple Programs/FUNCTION/Function Program List.md:
--------------------------------------------------------------------------------
1 | # Function Program List in C++
2 |
3 | **Note:**
4 | - Give a STAR if you like this
5 | - FORK to get more update
6 | - Make a PULL REQUEST to countribute
7 |
8 |
590 |
591 |
592 | **Note:**
593 | - Give a STAR if you like this
594 | - FORK to get more update
595 | - Make a PULL REQUEST to countribute
596 |
597 |
598 |
599 |
--------------------------------------------------------------------------------
/Tutorials/C++ Basic Tutorials/Simple Programs/FUNCTION/String Program List.md:
--------------------------------------------------------------------------------
1 | # String Program List in C++
2 |
3 | **Note:**
4 | - Give a STAR if you like this
5 | - FORK to get more update
6 | - Make a PULL REQUEST to countribute
7 |
8 |
368 |
369 | **Note:**
370 | - Give a STAR if you like this
371 | - FORK to get more update
372 | - Make a PULL REQUEST to countribute
373 |
--------------------------------------------------------------------------------
/Tutorials/C++ Basic Tutorials/Simple Programs/STRUCTURE/Enumeration Program List.md:
--------------------------------------------------------------------------------
1 | # Enumeration Program List C++
2 |
3 | **Note:**
4 | - Give a STAR if you like this
5 | - FORK to get more update
6 | - Make a PULL REQUEST to countribute
7 |
8 |
9 |
10 |
11 |
12 |
13 | **NOTE**
14 | - Enum is a collection of named integer constant (i.e each element is assigned by integer value)
15 | - It is declared with enum keyword
16 |
17 |
18 |
19 |
20 |
21 | ```
22 |
23 | #include
24 | using namespace std;
25 | enum Age
26 | {
27 | Crystabel=21,
28 | Prosper=19,
29 | Iyosayi=18,
30 | Olaoluwa=23,
31 | Etinosa=24,
32 | Nemo=16
33 | };
34 | int main()
35 | {
36 | enum Age obj;
37 | obj=Etinosa;
38 | cout<<"The age of Etinosa="<
49 |
50 |
51 |
52 |
53 |
54 | **Note:**
55 | - This Tutorial is mainly Practical.
56 | - Give a STAR if you like this
57 | - FORK to get more update
58 | - Make a PULL REQUEST to countribute
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
--------------------------------------------------------------------------------
/Tutorials/C++ Basic Tutorials/Simple Programs/STRUCTURE/Structure Program List.md:
--------------------------------------------------------------------------------
1 | # Structured Program List C++
2 |
3 | **Note:**
4 | - Give a STAR if you like this
5 | - FORK to get more update
6 | - Make a PULL REQUEST to countribute
7 |
8 |
363 |
364 |
365 |
366 | **Note:**
367 | - This Tutorial is mainly Practical.
368 | - Give a STAR if you like this
369 | - FORK to get more update
370 | - Make a PULL REQUEST to countribute
371 |
372 |
373 |
374 |
375 |
376 |
377 |
378 |
379 |
380 |
381 |
--------------------------------------------------------------------------------
/Tutorials/C++ Basic Tutorials/Simple Programs/STRUCTURE/Union Program List.md:
--------------------------------------------------------------------------------
1 | # Union Program List C++
2 |
3 | **Note:**
4 | - Give a STAR if you like this
5 | - FORK to get more update
6 | - Make a PULL REQUEST to countribute
7 |
8 |
9 |
10 |
11 |
12 |
13 | **NOTE**
14 | - Union is approximately same as structure but it does not support multiple value simultaneously
15 | - It supports only one value at a time
16 | - It always support last value
17 | - In given example only marks will be true because marks is the last value assigned to it
18 |
19 |
20 |
21 |
22 | ```
23 |
24 | #include
25 | #include
26 | using namespace std;
27 | union Student
28 | {
29 | char name[200];
30 | int rollno;
31 | float marks;
32 | };
33 | int main()
34 | {
35 | union Student obj;
36 | strcpy(obj.name,"Nemonet TYP");
37 | obj.rollno=205;
38 | obj.marks=85.4;
39 | cout<<"Name="<
54 |
55 |
56 |
57 |
58 |
59 | **Note:**
60 | - This Tutorial is mainly Practical.
61 | - Give a STAR if you like this
62 | - FORK to get more update
63 | - Make a PULL REQUEST to countribute
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
--------------------------------------------------------------------------------
/Tutorials/C++ Basic Tutorials/Simple Programs/SWITCH/Switch Program List.md:
--------------------------------------------------------------------------------
1 | # Switch Program List in C++
2 |
3 | **Note:**
4 | - Give a STAR if you like this
5 | - FORK to get more update
6 | - Make a PULL REQUEST to countribute
7 |
8 |
9 |
10 | *Put your phone on Desktop mode for easy access*
11 |
12 |
13 |
14 |
15 |
16 |
17 | INPUT ANY NUMBER AND PRINT DAY OF WEEK
18 |
19 | ```
20 |
21 | #include
22 | using namespace std;
23 | int main()
24 | {
25 | int no;
26 | cout<<"Enter any number\n";
27 | cin>>no;
28 | switch(no)
29 | {
30 | case 1:
31 | cout<<"Monday";
32 | break;
33 | case 2:
34 | cout<<"Tuesday";
35 | break;
36 | case 3:
37 | cout<<"Wednesday";
38 | break;
39 | case 4:
40 | cout<<"Thursday";
41 | break;
42 | case 5:
43 | cout<<"Friday";
44 | break;
45 | case 6:
46 | cout<<"Saturday";
47 | break;
48 | case 7:
49 | cout<<"Sunday";
50 | break;
51 | default:
52 | cout<<"Invalid Input";
53 | }
54 | }
55 |
56 |
57 | /*
58 | ### Output ###
59 | Enter any number
60 | 2
61 | Tuesday
62 | */
63 |
64 | ```
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 | INPUT ANY NUMBER AND PRINT MONTH, NAME AND NUMBER OF DAYS
76 |
77 | ```
78 |
79 | #include
80 | using namespace std;
81 | int main()
82 | {
83 | int no;
84 | cout<<"Enter any number\n";
85 | cin>>no;
86 | switch(no)
87 | {
88 | case 1:
89 | cout<<"January-31";
90 | break;
91 | case 2:
92 | cout<<"February-28/29";
93 | break;
94 | case 3:
95 | cout<<"March-31";
96 | break;
97 | case 4:
98 | cout<<"April-30";
99 | break;
100 | case 5:
101 | cout<<"May-31";
102 | break;
103 | case 6:
104 | cout<<"June-30";
105 | break;
106 | case 7:
107 | cout<<"July-31";
108 | break;
109 | case 8:
110 | cout<<"August-31";
111 | break;
112 | case 9:
113 | cout<<"September-30";
114 | break;
115 | case 10:
116 | cout<<"October-31";
117 | break;
118 | case 11:
119 | cout<<"November-30";
120 | break;
121 | case 12:
122 | cout<<"December-31";
123 | break;
124 | default:
125 | cout<<"Invalid Input";
126 | }
127 | }
128 |
129 |
130 | /*
131 | ### Output ###
132 | Enter any number
133 | 3
134 | March-31
135 | */
136 |
137 | ```
138 |
139 |
140 |
141 |
142 |
143 |
144 |
145 |
146 |
147 |
148 | CHECK ALPHABELT IS CONSONENT OR VOWEL METHOD 1
149 |
150 | ```
151 |
152 | #include
153 | using namespace std;
154 | int main()
155 | {
156 | char ch;
157 | cout<<"Enter any alphabelt\n";
158 | cin>>ch;
159 | switch(ch)
160 | {
161 | case 'a':
162 | cout<<"vowel";
163 | break;
164 | case 'e':
165 | cout<<"vowel";
166 | break;
167 | case 'i':
168 | cout<<"vowel";
169 | break;
170 | case 'o':
171 | cout<<"vowel";
172 | break;
173 | case 'u':
174 | cout<<"vowel";
175 | break;
176 | default:
177 | cout<<"Consonent";
178 | }
179 | }
180 |
181 |
182 | /*
183 | ### Output ###
184 | Enter any number
185 | m
186 | Consonent
187 | */
188 |
189 | ```
190 |
191 |
192 |
193 |
194 |
195 |
196 |
197 |
198 |
199 |
200 | CHECK ALPHABELT IS CONSONENT OR VOWEL METHOD 2
201 |
202 | ```
203 |
204 | #include
205 | using namespace std;
206 | int main()
207 | {
208 | char ch;
209 | cout<<"Enter any alphabelt\n";
210 | cin>>ch;
211 | switch(ch)
212 | {
213 | case 'a':
214 | case 'e':
215 | case 'i':
216 | case 'o':
217 | case 'u':
218 | cout<<"vowel";
219 | break;
220 | default:
221 | cout<<"Consonent";
222 | }
223 | }
224 |
225 |
226 | /*
227 | ### Output ###
228 | Enter any number
229 | o
230 | vowel
231 | */
232 |
233 | ```
234 |
235 |
236 |
237 |
238 |
239 |
240 |
241 |
242 |
243 |
244 |
245 | SIMPLE CALCULATOR PROGRAM
246 |
247 | ```
248 |
249 | #include
250 | using namespace std;
251 | int main()
252 | {
253 | float x,y;
254 | cout<<"Enter first number\n";
255 | cin>>x;
256 | cout<<"Enter second number\n";
257 | cin>>y;
258 | cout<<"Enter\n+ for add\n- for sub\n* for multiply\n/ for div\n";
259 | cin>>ch;
260 | switch(ch)
261 | {
262 | case '+':
263 | cout<<"Add="<<(x+y);
264 | break;
265 | case '-':
266 | cout<<"Sub="<<(x-y);
267 | break;
268 | case '*':
269 | cout<<"Multiply="<<(x*y);
270 | break;
271 | case '/':
272 | cout<<"Div="<<(x/y);
273 | break;
274 | default:
275 | cout<<"Invalid Input!!!";
276 | }
277 | }
278 |
279 |
280 | /*
281 | ### Output ###
282 | Enter first number
283 | 45
284 | Enter second number
285 | 5
286 | Enter
287 | + for add
288 | - for sub
289 | * for multiply
290 | / for div
291 |
292 | +
293 | Add=50.0
294 |
295 | */
296 |
297 |
298 | ```
299 |
300 |
301 |
302 |
303 |
304 |
305 |
306 |
307 |
308 |
309 | SIMPLE ATM PROGRAM
310 |
311 | ```
312 |
313 | #include
314 | using namespace std;
315 | int main()
316 | {
317 | float amt,creditamt,debitamt;
318 | char ch;
319 | cout<<"Enter initial amount\n";
320 | cin>>amt;
321 | cout<<"Enter\nc for credit\nd for debit\nb for balance\n";
322 | cin>>ch;
323 | switch(ch)
324 | {
325 | case 'c':
326 | cout<<"Enter credit amount\n";
327 | cin>>creditamt;
328 | amt=amt+creditamt;
329 | cout<<"New Amount="<>debitamt;
334 | if(amt>=debitamt)
335 | {
336 | amt=amt+debitamt;
337 | cout<<"New Amount="<
373 |
374 |
375 |
376 |
377 |
378 |
379 |
380 |
381 |
382 |
383 |
384 | **Note:**
385 | - Give a STAR if you like this
386 | - FORK to get more update
387 | - Make a PULL REQUEST to countribute
388 |
389 |
390 |
391 |
392 |
393 |
394 |
--------------------------------------------------------------------------------
/Tutorials/README.md:
--------------------------------------------------------------------------------
1 | # About Tutorial
2 |
3 | 
4 |
5 |
6 |
7 | You can access a wide range of tutorials directly within our dedicated mobile application,
8 | which is designed to cater to both Android and iOS users.
9 |
10 | - The app provides a user-friendly interface and an extensive collection of tutorials that cover various subjects.
11 | - Whether you're looking to enhance your skills, learn new techniques, or explore different topics, our app has got you covered.
12 | - To begin your learning C/C++ Programming journey, simply click here to initiate the app download process.
13 |
14 |
15 |
--------------------------------------------------------------------------------
/Tutorials/UNIBEN STUDENT/readme.md:
--------------------------------------------------------------------------------
1 | # This Contains CSC224 Past questions and answers for UNIBEN Student
2 |
3 | **Note:**
4 | - This Tutorial is mainly Practical.
5 | - Give a STAR if you like this
6 | - FORK to get more update
7 | - Make a PULL REQUEST to countribute
--------------------------------------------------------------------------------
/Tutorials/imgs/C++/img1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codetoanbug/C-CPP-Programming/877d185fd9d32170d42ca11e85480afceeafcdc2/Tutorials/imgs/C++/img1.jpg
--------------------------------------------------------------------------------
/Tutorials/imgs/C++/img10.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codetoanbug/C-CPP-Programming/877d185fd9d32170d42ca11e85480afceeafcdc2/Tutorials/imgs/C++/img10.jpg
--------------------------------------------------------------------------------
/Tutorials/imgs/C++/img11.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codetoanbug/C-CPP-Programming/877d185fd9d32170d42ca11e85480afceeafcdc2/Tutorials/imgs/C++/img11.jpg
--------------------------------------------------------------------------------
/Tutorials/imgs/C++/img12.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codetoanbug/C-CPP-Programming/877d185fd9d32170d42ca11e85480afceeafcdc2/Tutorials/imgs/C++/img12.jpg
--------------------------------------------------------------------------------
/Tutorials/imgs/C++/img13.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codetoanbug/C-CPP-Programming/877d185fd9d32170d42ca11e85480afceeafcdc2/Tutorials/imgs/C++/img13.jpg
--------------------------------------------------------------------------------
/Tutorials/imgs/C++/img14.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codetoanbug/C-CPP-Programming/877d185fd9d32170d42ca11e85480afceeafcdc2/Tutorials/imgs/C++/img14.jpg
--------------------------------------------------------------------------------
/Tutorials/imgs/C++/img15.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codetoanbug/C-CPP-Programming/877d185fd9d32170d42ca11e85480afceeafcdc2/Tutorials/imgs/C++/img15.jpg
--------------------------------------------------------------------------------
/Tutorials/imgs/C++/img16.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codetoanbug/C-CPP-Programming/877d185fd9d32170d42ca11e85480afceeafcdc2/Tutorials/imgs/C++/img16.jpg
--------------------------------------------------------------------------------
/Tutorials/imgs/C++/img17.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codetoanbug/C-CPP-Programming/877d185fd9d32170d42ca11e85480afceeafcdc2/Tutorials/imgs/C++/img17.jpg
--------------------------------------------------------------------------------
/Tutorials/imgs/C++/img18.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codetoanbug/C-CPP-Programming/877d185fd9d32170d42ca11e85480afceeafcdc2/Tutorials/imgs/C++/img18.jpg
--------------------------------------------------------------------------------
/Tutorials/imgs/C++/img19.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codetoanbug/C-CPP-Programming/877d185fd9d32170d42ca11e85480afceeafcdc2/Tutorials/imgs/C++/img19.jpg
--------------------------------------------------------------------------------
/Tutorials/imgs/C++/img2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codetoanbug/C-CPP-Programming/877d185fd9d32170d42ca11e85480afceeafcdc2/Tutorials/imgs/C++/img2.jpg
--------------------------------------------------------------------------------
/Tutorials/imgs/C++/img20.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codetoanbug/C-CPP-Programming/877d185fd9d32170d42ca11e85480afceeafcdc2/Tutorials/imgs/C++/img20.jpg
--------------------------------------------------------------------------------
/Tutorials/imgs/C++/img21.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codetoanbug/C-CPP-Programming/877d185fd9d32170d42ca11e85480afceeafcdc2/Tutorials/imgs/C++/img21.jpg
--------------------------------------------------------------------------------
/Tutorials/imgs/C++/img22.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codetoanbug/C-CPP-Programming/877d185fd9d32170d42ca11e85480afceeafcdc2/Tutorials/imgs/C++/img22.jpg
--------------------------------------------------------------------------------
/Tutorials/imgs/C++/img23.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codetoanbug/C-CPP-Programming/877d185fd9d32170d42ca11e85480afceeafcdc2/Tutorials/imgs/C++/img23.jpg
--------------------------------------------------------------------------------
/Tutorials/imgs/C++/img24.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codetoanbug/C-CPP-Programming/877d185fd9d32170d42ca11e85480afceeafcdc2/Tutorials/imgs/C++/img24.jpg
--------------------------------------------------------------------------------
/Tutorials/imgs/C++/img25.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codetoanbug/C-CPP-Programming/877d185fd9d32170d42ca11e85480afceeafcdc2/Tutorials/imgs/C++/img25.jpg
--------------------------------------------------------------------------------
/Tutorials/imgs/C++/img26.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codetoanbug/C-CPP-Programming/877d185fd9d32170d42ca11e85480afceeafcdc2/Tutorials/imgs/C++/img26.jpg
--------------------------------------------------------------------------------
/Tutorials/imgs/C++/img27.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codetoanbug/C-CPP-Programming/877d185fd9d32170d42ca11e85480afceeafcdc2/Tutorials/imgs/C++/img27.jpg
--------------------------------------------------------------------------------
/Tutorials/imgs/C++/img28.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codetoanbug/C-CPP-Programming/877d185fd9d32170d42ca11e85480afceeafcdc2/Tutorials/imgs/C++/img28.jpg
--------------------------------------------------------------------------------
/Tutorials/imgs/C++/img29.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codetoanbug/C-CPP-Programming/877d185fd9d32170d42ca11e85480afceeafcdc2/Tutorials/imgs/C++/img29.jpg
--------------------------------------------------------------------------------
/Tutorials/imgs/C++/img3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codetoanbug/C-CPP-Programming/877d185fd9d32170d42ca11e85480afceeafcdc2/Tutorials/imgs/C++/img3.jpg
--------------------------------------------------------------------------------
/Tutorials/imgs/C++/img30.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codetoanbug/C-CPP-Programming/877d185fd9d32170d42ca11e85480afceeafcdc2/Tutorials/imgs/C++/img30.jpg
--------------------------------------------------------------------------------
/Tutorials/imgs/C++/img31.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codetoanbug/C-CPP-Programming/877d185fd9d32170d42ca11e85480afceeafcdc2/Tutorials/imgs/C++/img31.jpg
--------------------------------------------------------------------------------
/Tutorials/imgs/C++/img32.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codetoanbug/C-CPP-Programming/877d185fd9d32170d42ca11e85480afceeafcdc2/Tutorials/imgs/C++/img32.jpg
--------------------------------------------------------------------------------
/Tutorials/imgs/C++/img33.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codetoanbug/C-CPP-Programming/877d185fd9d32170d42ca11e85480afceeafcdc2/Tutorials/imgs/C++/img33.jpg
--------------------------------------------------------------------------------
/Tutorials/imgs/C++/img34.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codetoanbug/C-CPP-Programming/877d185fd9d32170d42ca11e85480afceeafcdc2/Tutorials/imgs/C++/img34.jpg
--------------------------------------------------------------------------------
/Tutorials/imgs/C++/img35.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codetoanbug/C-CPP-Programming/877d185fd9d32170d42ca11e85480afceeafcdc2/Tutorials/imgs/C++/img35.jpg
--------------------------------------------------------------------------------
/Tutorials/imgs/C++/img36.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codetoanbug/C-CPP-Programming/877d185fd9d32170d42ca11e85480afceeafcdc2/Tutorials/imgs/C++/img36.jpg
--------------------------------------------------------------------------------
/Tutorials/imgs/C++/img37.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codetoanbug/C-CPP-Programming/877d185fd9d32170d42ca11e85480afceeafcdc2/Tutorials/imgs/C++/img37.jpg
--------------------------------------------------------------------------------
/Tutorials/imgs/C++/img38.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codetoanbug/C-CPP-Programming/877d185fd9d32170d42ca11e85480afceeafcdc2/Tutorials/imgs/C++/img38.jpg
--------------------------------------------------------------------------------
/Tutorials/imgs/C++/img38b.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codetoanbug/C-CPP-Programming/877d185fd9d32170d42ca11e85480afceeafcdc2/Tutorials/imgs/C++/img38b.jpg
--------------------------------------------------------------------------------
/Tutorials/imgs/C++/img39.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codetoanbug/C-CPP-Programming/877d185fd9d32170d42ca11e85480afceeafcdc2/Tutorials/imgs/C++/img39.jpg
--------------------------------------------------------------------------------
/Tutorials/imgs/C++/img4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codetoanbug/C-CPP-Programming/877d185fd9d32170d42ca11e85480afceeafcdc2/Tutorials/imgs/C++/img4.jpg
--------------------------------------------------------------------------------
/Tutorials/imgs/C++/img40.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codetoanbug/C-CPP-Programming/877d185fd9d32170d42ca11e85480afceeafcdc2/Tutorials/imgs/C++/img40.jpg
--------------------------------------------------------------------------------
/Tutorials/imgs/C++/img41.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codetoanbug/C-CPP-Programming/877d185fd9d32170d42ca11e85480afceeafcdc2/Tutorials/imgs/C++/img41.jpg
--------------------------------------------------------------------------------
/Tutorials/imgs/C++/img42.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codetoanbug/C-CPP-Programming/877d185fd9d32170d42ca11e85480afceeafcdc2/Tutorials/imgs/C++/img42.jpg
--------------------------------------------------------------------------------
/Tutorials/imgs/C++/img5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codetoanbug/C-CPP-Programming/877d185fd9d32170d42ca11e85480afceeafcdc2/Tutorials/imgs/C++/img5.jpg
--------------------------------------------------------------------------------
/Tutorials/imgs/C++/img6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codetoanbug/C-CPP-Programming/877d185fd9d32170d42ca11e85480afceeafcdc2/Tutorials/imgs/C++/img6.jpg
--------------------------------------------------------------------------------
/Tutorials/imgs/C++/img7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codetoanbug/C-CPP-Programming/877d185fd9d32170d42ca11e85480afceeafcdc2/Tutorials/imgs/C++/img7.jpg
--------------------------------------------------------------------------------
/Tutorials/imgs/C++/img8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codetoanbug/C-CPP-Programming/877d185fd9d32170d42ca11e85480afceeafcdc2/Tutorials/imgs/C++/img8.jpg
--------------------------------------------------------------------------------
/Tutorials/imgs/C++/img9.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/codetoanbug/C-CPP-Programming/877d185fd9d32170d42ca11e85480afceeafcdc2/Tutorials/imgs/C++/img9.jpg
--------------------------------------------------------------------------------