C Program to Convert Decimal to Binary

We use numbers in our everyday life in decimal form. Decimal numbers have 10 symbols (0, 1, 2, 3, 4, 5, 6, 7, 8 and 9). These ten symbols are used to represent any decimal number. The example of decimal numbers are 897513709, 8790 etc. Decimal numbers are sometimes represented as (897513709)10 or (8790)10. On … Continue reading “C Program to Convert Decimal to Binary”

C Program to Check Whether a Number is Palindrome

Palindrome is a number or sequence of characters which reads same backward and forward. If we reverse a palindrome number, the reversed and original number will be same. The first C program checks whether a number is palindrome by reversing the number. The second program does the same thing without reversing the number. By reversing … Continue reading “C Program to Check Whether a Number is Palindrome”

Swap Two Variables without Using Third Variable

It is very trivial to swap two variables with the help of another one. Here we’ll see how to do the same thing without using the third variable. Solution 1: a=b+a; b=a-b; a=a-b; Explanation: Here the principle is simple, if you have one variable and the summation of two variables you want to swap then … Continue reading “Swap Two Variables without Using Third Variable”

Run WhatsApp on Computer Using Web Browser

WhatsApp is traditionally used on smartphone as mobile App. But using WhatsApp on computer has some benefits. Typing is much easier on computer. Also sharing video or image is much more convenient on computer than mobile phone. Here we’ll see how to use WhatsApp on computer using web browsers. At this moment supported browsers are, … Continue reading “Run WhatsApp on Computer Using Web Browser”

How to Take Screenshot on Fedora GNOME Desktop

We need to take screenshots of the desktop for various reasons. For example, you want prepare a presentation on a software. You might need to take snapshots of various Windows of the software. Here we’ll see how we can take screenshot of the whole desktop or some portion of the desktop. 1. Take screenshot of whole … Continue reading “How to Take Screenshot on Fedora GNOME Desktop”

0
0
0
0
3
1