Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 32 additions & 15 deletions C++/README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,34 @@
<div align="center">

# C++ Programs

| Program No.| Question |
| ------- | ------ |
| Program-01 | Program to find the maximum and minimum element in an array. |
| Program-02 | Program to find the number of occurrence of X element present in sorted array. |
| Program-03 | Program to Swap the Kth Elements of a series. |
| Program-04 | Program to find factorial of a number |
| Program-05 | Program to find the sum of the digits of the given number. |
| Program-06 | Program to find the greatest common divisor of two number. |
| Program-07 | Program to print Pascal' triangle |
| Program-08 | Program to reverse a string |
| Program-09 | Program to check if two numbers are equal without using arithmetic operators or comparison operators.
| Program-10 | Program to Reverse words in a given string
| Program-10 | Program to find the missing number in a Sorted Array.
| Program-15 | Program to find modular exponentiation.
| Program-19| To check whether a number is in palindrome or not
| Program-24 | Program to convert Hexa-Decimal number to Decimal number
| Program-25 | Program to Implement Queue Data Structure Using Linked Lists
| [Program-01](https://github.com/swaaz/basicprograms/blob/814a1e60ae23d81158d8174666f23c9b7419e15e/C++/Program-01/Program.cpp) | Program to find the maximum and minimum element in an array. |
| [Program-02](https://github.com/swaaz/basicprograms/blob/814a1e60ae23d81158d8174666f23c9b7419e15e/C++/Program-2/number_of_occurrence.cpp) | Program to find the number of occurrence of X element present in sorted array. |
| [Program-03](https://github.com/swaaz/basicprograms/blob/814a1e60ae23d81158d8174666f23c9b7419e15e/C++/Program-3/program.cpp) | Program to Swap the Kth Elements of a series. |
| [Program-04](https://github.com/swaaz/basicprograms/blob/814a1e60ae23d81158d8174666f23c9b7419e15e/C++/Program-4/program.cpp) | Program to find factorial of a number |
| [Program-05](https://github.com/swaaz/basicprograms/blob/814a1e60ae23d81158d8174666f23c9b7419e15e/C++/Program-5/program.cpp) | Program to find the sum of the digits of the given number. |
| [Program-06](https://github.com/swaaz/basicprograms/blob/814a1e60ae23d81158d8174666f23c9b7419e15e/C++/Program-6/program.cpp) | Program to find the greatest common divisor of two number. |
| [Program-07](https://github.com/swaaz/basicprograms/blob/814a1e60ae23d81158d8174666f23c9b7419e15e/C++/Program-7/program.cpp) | Program to print Pascal' triangle |
| [Program-08](https://github.com/swaaz/basicprograms/blob/814a1e60ae23d81158d8174666f23c9b7419e15e/C++/Program-8/program.cpp) | Program to reverse a string |
| [Program-09](https://github.com/swaaz/basicprograms/blob/814a1e60ae23d81158d8174666f23c9b7419e15e/C++/Program-9/program.cpp) | Program to check if two numbers are equal without using arithmetic operators or comparison operators.
| [Program-10](https://github.com/swaaz/basicprograms/blob/814a1e60ae23d81158d8174666f23c9b7419e15e/C++/Program-10/program.cpp) | Program to find the missing number in a Sorted Array.
| [Program-11](https://github.com/swaaz/basicprograms/blob/814a1e60ae23d81158d8174666f23c9b7419e15e/C++/Program11/Program11.cpp) | Program to Camel case an input sentence |
| [Program-12](https://github.com/swaaz/basicprograms/blob/814a1e60ae23d81158d8174666f23c9b7419e15e/C++/Program-12/program.cpp) | Find the First non repeating character index
| [Program-13](https://github.com/swaaz/basicprograms/blob/814a1e60ae23d81158d8174666f23c9b7419e15e/C++/Program-13/program.cpp) | Find the longest Palindromic Substring |
| [Program-14](https://github.com/swaaz/basicprograms/blob/814a1e60ae23d81158d8174666f23c9b7419e15e/C++/Program-14/program.cpp) | Find the Maximum Product of the Subarray |
| [Program-15](https://github.com/swaaz/basicprograms/blob/814a1e60ae23d81158d8174666f23c9b7419e15e/C++/Program-15/program.cpp) | Program to find modular exponentiation. |
| [Program-16](https://github.com/swaaz/basicprograms/blob/814a1e60ae23d81158d8174666f23c9b7419e15e/C++/Program-16/rightangle.cpp) | Program for right angled patterns |
| [Program-17](https://github.com/swaaz/basicprograms/blob/814a1e60ae23d81158d8174666f23c9b7419e15e/C++/Program-17/randomcolorscreen.cpp) | Program to print random texts with colour |
| [Program-18](https://github.com/swaaz/basicprograms/blob/814a1e60ae23d81158d8174666f23c9b7419e15e/C++/Program-18/getWeekday.cpp) | Program to get weekday with given day. |
| [Program-19](https://github.com/swaaz/basicprograms/blob/814a1e60ae23d81158d8174666f23c9b7419e15e/C++/program-19/palindrome.cpp) | To check whether a number is in palindrome or not |
| [Program-20](https://github.com/swaaz/basicprograms/blob/814a1e60ae23d81158d8174666f23c9b7419e15e/C++/Program-20/program.cpp) | To find the square root of a number upto "p" no of places |
| [Program-21](https://github.com/swaaz/basicprograms/blob/814a1e60ae23d81158d8174666f23c9b7419e15e/C++/Program-21/program.cpp) | Last digit of sum of partial Fibonacci Series |
| [Program-22](https://github.com/swaaz/basicprograms/blob/814a1e60ae23d81158d8174666f23c9b7419e15e/C++/Program%2022/adding_two_string.cpp) | Program to add Two Binary Number Input |
| [Program-23](https://github.com/swaaz/basicprograms/blob/814a1e60ae23d81158d8174666f23c9b7419e15e/C++/Program%2023/sum_of_square_of_binomial_coefficient.cpp) | To find the sum of square of binomial coefficient Input(integer input) |
| [Program-24](https://github.com/swaaz/basicprograms/blob/814a1e60ae23d81158d8174666f23c9b7419e15e/C++/Program_24/HexaDecimal-Decimal.cpp) | Program to convert Hexa-Decimal number to Decimal number
| [Program-25](https://github.com/swaaz/basicprograms/blob/814a1e60ae23d81158d8174666f23c9b7419e15e/C++/Program_25/Queues_Using_Linked_Lists.cpp) | Program to Implement Queue Data Structure Using Linked Lists

</div>
<hr>
Loading