05 - WAP to Print the Sizeof all Datatypes in C October 19, 2017 This Program prints the Size of all the Datatypes of any Machines such as 32-Bit, 16-Bit and even on a 8-Bit machine. //to display the ...Read More
04 - WAP to Print Positive & Negative, Odd or Even Numbers in C October 19, 2017 This C - Programs gets the a Value and Checks if it's Less than or Greater than Zero, and Prints the Number if it's Odd or Even....Read More
03 - WAP to Print the Given String in a Reverse Order. October 13, 2017 This Program Prints the given String in Reverse Order without reversing the Characters of the String. #include #include #define M...Read More
02 - WAP to Swap given Two Number's. October 13, 2017 This program Swaps the Given two Number's. #include //swap function to swap the numbers void swap (int *x, int *y ) { //declara...Read More
01 - WAP to Print Upper Case to Lower Case and vice versa. October 13, 2017 This is a Program to print a given letter's from Upper case to lower or Lower case to upper. #include #include #include int ...Read More