This is really a easy code for swapping values of variables.Try to understand the logic. We have to take another extra integer (temp). Logic : Stored the value of “b” in “temp”. Then stored the …
This is just a simple program for Prime Number. Logic is simple. Checking the inputed number if it is divided by 2 or not. We just need to use a for loop. If you any …
If you have seen previous patterns then it is very easy. These patterns helped me understanding loops. Here is my Code : int p, q, r, k = 5; // “k” is for taking inputs …