27 - WAP to Implement own Strtok(), Strstr(), Strcmp() Function's in C November 24, 2017 This is a Program to implement own strtok(), strstr(), & strcmp() function. strtok() - This function is basically used for spli...Read More
26 - WAP to determine Armstrong of a Number in C November 19, 2017 This program finds the Armstrong value of a given Number in C. An Armstrong number is a number such that the sum of its digits raise...Read More
25 - WAP to Print Upper Case & Lower Case using Bitwise in C November 19, 2017 This Program prints the given string in both Upper Case & Lower Case, this is just a simple basic code using bitwise operator's....Read More
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