Programmer

Friday, 29 June 2018

Monday, 25 June 2018

Thursday, 21 June 2018

Tuesday, 12 June 2018

What is Anagram? C program to check whether two strings are anagrams or not, a string is assumed to consist of lower case alphabets only. Two words are said to be anagrams of each other if the letters of one word can be rearranged to form the other word. So, in anagram strings, all characters occur the same number of times. For example, "abc"...

Friday, 8 June 2018

Thursday, 7 June 2018

Tuesday, 5 June 2018

Friday, 1 June 2018

Program To Print Particular Line From File.

#include<fstream.h> #include<conio.h> #include<stdlib.h> void main() { ifstream fin; int count=0,num,l=1; char ...