Write a c program to find the sum of positive square elements in an array
Answers
Answered by
2
Explanation:
Program to find the sum of perfect square elements in an array
/* C program to find the sum of perfect square elements in an array */
#include<stdio.h>
#include<math.h>
int isPerfectSquare(int number)
{
int iVar;
float fVar;
plz mark it as brainliest answer plz
Similar questions