24 - WAP to Print Upper Case to Upper Case using Bitwise Operators in C November 19, 2017 This Program prints the given string from Upper Case to Lower Case using Bitwise Operators in C. #include <stdio.h> #include <...Read More
23 - WAP to Print Lower Case to Upper Case using Bitwise Operators in C November 19, 2017 This Program prints the given string from Lower Case to Upper Case using Bitwise Operators in C. #include <stdio.h> #include ...Read More
Why Linux is more secure than Other Operating Systems? October 31, 2017 A brief about OS: Before getting into why is linux more secure than other operating systems, let us have a look into the brief on O...Read More
22 - WAP to Print Magic Square [Matrix Form] in C October 31, 2017 This Program prints the Magic Square by considering the position of the '1' placed to a certain row or a column. #include ...Read More
21 - WAP to Read Integer and Print it without using 'scanf' operator in C October 31, 2017 This Program reads the Value of a Integer and prints the same, without using the scanf() function / operator. //this program is to dis...Read More