/Day5-CodingBootcamps-PS

This programs enhances problem solving skills using c for entry level students

Primary LanguageC

CodingBootcamps-Problem Solving Using C : Beginner level - Day 5 Hands-on Practice

This programs enhances problem solving skills using c for entry level students

Problem 1: You will be given a string 'str'. Your task is to find the number of vowels in 'str' and print it

Example
input:
loop

output:
2

Problem 2: you will be given a string 'str'. Your task is to reverse 'str' and print it.

Example
input:
vvce

output:
ecvv

Problem 3: You will be given a string 'str'. Your task is to check whether 'str' is a palindrome or not.

Example
input:
Radar

output:
Palindrome