13 - WAP to Print Fractional Decimal Number in Binary Number in C October 22, 2017 This Program prints the Value of a Fractional Decimal to Binary Number. #include //Main program function int main() { //Declaring th...Read More
12 - WAP to Implement own Sizeof operator using Macro in C October 21, 2017 This program performs a Size of operation without using a "sizeof" operator. The following code prints the Size of each...Read More
11 - WAP to Print ASCII table in C October 21, 2017 This Program prints the complete ASCII (man ASCII) table with all the values in Oct, Hex, Dec, Char. #include int main() { //i...Read More
10 - WAP to Increment (Pre/Post) a Number without using Increment operator (++) in C. October 21, 2017 This program Pre-Increment's & Post-Increment, a Number without using Increment operator (++) in C. The Number are used and ar...Read More
09 - WAP to Print Odd or Even without using '%' Operator in C October 21, 2017 This program Prints the Odd or Even for the given Number without using "%" operator. But by using Bitwise "Ternary"...Read More