Anagram in C

Here is the program for anagram in c.   Two strings are said to be anagrams if by rearranging the characters of any one string will make both strings equal.   Example: “adssfa” and “dsasfa” are anagrams “adsfa” and “sdfac” are not anagrams How to Check two Strings are Anagrams or not? So what we will …

Anagram in C Read More »

Introduction to SQL

SQL stands for structured query language. SQL is a tool which is used to interact with database in very easier and friendly manner. It provides the functionality of retrieving, updating and deleting the database and applying security and integrity constraints also.SQL originally called ‘Sequel’ and was first developed by IBM. As the time passed, various …

Introduction to SQL Read More »