program to find average of an array using pointer

program to find average of an array using pointer
/*Write a program that reads a group of numbers from the user and places them in an array of type float. Once the numbers are stored in the array, the program should average them and print the result. Use pointer notation wherever possible*/ /* first of all...

cpp progrom to check pallindrome of a string

cpp progrom to check pallindrome of a string
cpp progrom to check entered string is pallindrome or not: solution: #include <iostream> #include <string.h> using namespace std; int main() { string str; cout<<"enter the string to check it is pallindrome or not:"; cin>>str; ...