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
File renamed without changes.
File renamed without changes.
3 changes: 2 additions & 1 deletion C++/Program-4/readme.md
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
Program to find factorial of a number
Program -4
Program to find the reverse of a string
10 changes: 10 additions & 0 deletions C++/Program-9/program.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
int main()
{
int x = 10;
int y = 10;
if ( !(x ^ y) )
printf(" x is equal to y ");
else
printf(" x is not equal to y ");
return 0;
}
1 change: 1 addition & 0 deletions C++/Program-9/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Program to check if two numbers are equal without using arithmetic operators or comparison operators.
12 changes: 12 additions & 0 deletions C++/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
| 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.
|