Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Please, Using C, not C+ or C++, Thanks. Files to submit: anagram.c Time it took Matthew to Complete: 15 mins Requriements Program must compile with

Please, Using C, not C+ or C++, Thanks.

Files to submit: anagram.c

Time it took Matthew to Complete: 15 mins

Requriements

Program must compile with both -Wall and -Werror options enabled

Submit only the files requested

Use doubles to store real numbers

Print all doubles to 2 decimal points unless stated otherwise

Restrictions

No global variables may be used

Your main function may only declare variables and call other functions

Description

Write a program that checks if two strings are anagrams. A string is an anagram of another string if the letters in the first string can be rearranged to form the second string. For example army and Mary are anagrams because the letters in army can be rearranged to form Mary.

Details

Your check if two strings are anagrams should be case insensitive

MARY and army are anagrams

Assumptions

Input will always be valid

No string will be longer than 20 characters

Hints

Don't forget that ou can add to and subtract from characters

'B' - 'A' is 1

2 + 'A' is 'C'

Examples

User input has been underlined.

Example 1

Please enter the first word: MaRy Please enter the second word: arMY MaRy is an anagram of arMY

Example 2

Please enter the first word: dog Please enter the second word: god dog is an anagram of god

Example 3

Please enter the first word: bob Please enter the second word: bobs bob is NOT an anagram of bobs

Example 4

Please enter the first word: aap Please enter the second word: pap aap is NOT an anagram of pap

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Structured Search For Big Data From Keywords To Key-objects

Authors: Mikhail Gilula

1st Edition

012804652X, 9780128046524

More Books

Students also viewed these Databases questions

Question

What is the most important part of any HCM Project Map and why?

Answered: 1 week ago